diff --git a/app-testing/.gitignore b/app-testing/.gitignore index 90e4fc52e04..6ae4921e11a 100644 --- a/app-testing/.gitignore +++ b/app-testing/.gitignore @@ -1,5 +1,5 @@ .env results analysis_results/*.json -files/generated_protocols/* -!files/generated_protocols/.keepme +files/protocols/generated_protocols/* +!files/protocols/generated_protocols/.keepme diff --git a/app-testing/automation/data/protocol_registry.py b/app-testing/automation/data/protocol_registry.py index e3229168ae7..d22bd1620cc 100644 --- a/app-testing/automation/data/protocol_registry.py +++ b/app-testing/automation/data/protocol_registry.py @@ -1,4 +1,5 @@ import os +from pathlib import Path from typing import Optional from rich.console import Console @@ -42,21 +43,42 @@ def all_defined_protocols_with_overrides(self) -> list[ProtocolWithOverrides]: return [getattr(self.protocols_with_overrides, prop) for prop in dir(self.protocols_with_overrides) if "__" not in prop] +def all_stems() -> set[str]: + dir_path = Path(Path(__file__).resolve().parent.parent.parent, os.getenv("FILES_FOLDER", "files"), "protocols") + file_stems = {file.stem for file in dir_path.glob("*.py")} + return file_stems + + def main() -> None: console = Console() protocol_registry = ProtocolRegistry() console.print("protocols for APP_ANALYSIS_TEST_PROTOCOLS") - console.print(Panel('Formatted for .env APP_ANALYSIS_TEST_PROTOCOLS="')) - sorted_stems = sorted([p.file_stem for p in protocol_registry.all_defined_protocols()]) + console.print(Panel("Formatted for .env")) + regular_stems = sorted([p.file_stem for p in protocol_registry.all_defined_protocols()]) console.print('APP_ANALYSIS_TEST_PROTOCOLS="') - console.print(",\n".join(sorted_stems)) + console.print(",\n".join(regular_stems)) console.print('"') - console.print(Panel('Formatted for .env APP_ANALYSIS_TEST_PROTOCOLS_WITH_OVERRIDES="')) + override_stems = sorted([p.file_stem for p in protocol_registry.all_defined_protocols_with_overrides()]) console.print('APP_ANALYSIS_TEST_PROTOCOLS_WITH_OVERRIDES="') - sorted_stems = sorted([p.file_stem for p in protocol_registry.all_defined_protocols_with_overrides()]) - console.print(",\n".join(sorted_stems)) + console.print(",\n".join(override_stems)) console.print('"') + all_files = all_stems() + filtered_stems = {stem for stem in all_files if "overrides" not in stem.lower()} + found_override_stems = {stem for stem in all_files if "overrides" in stem.lower()} + # Finding and displaying differences + differences = filtered_stems - set(regular_stems) + if differences: + console.print(f"Stems in actual files not in mapping: {differences}") + else: + console.print("No differences between files and mapping.") + + differences = found_override_stems - set(override_stems) + if differences: + console.print(f"Override Stems in actual files not in mapping: {differences}") + else: + console.print("No differences between actual override protocols and the mapping.") + if __name__ == "__main__": main() diff --git a/app-testing/automation/data/protocol_with_overrides.py b/app-testing/automation/data/protocol_with_overrides.py index 44af790056c..f1410ac5f32 100644 --- a/app-testing/automation/data/protocol_with_overrides.py +++ b/app-testing/automation/data/protocol_with_overrides.py @@ -28,7 +28,7 @@ def create_protocols(self) -> None: new_file_name = f"{new_file_stem}.{self.file_extension}" # Create the full path for the new file # all generated files live at files/protocols/$GENERATED_PROTOCOLS_FOLDER - new_file_path = Path(self.file_path.parent.parent, GENERATED_PROTOCOLS_FOLDER, new_file_name) + new_file_path = Path(self.file_path.parent, GENERATED_PROTOCOLS_FOLDER, new_file_name) # Prepare the override string to prepend override_string = f'{self.override_variable_name} = "{override}"\n' # Write the new file with the override string prepended diff --git a/app-testing/automation/data/protocols.py b/app-testing/automation/data/protocols.py index b0e712af26d..136dacfe481 100644 --- a/app-testing/automation/data/protocols.py +++ b/app-testing/automation/data/protocols.py @@ -21,15 +21,6 @@ class Protocols: robot_error=False, ) - OT2_S_v6_P20S_P300M_HS_HSCollision: Protocol = Protocol( - file_stem="OT2_S_v6_P20S_P300M_HS_HSCollision", - file_extension="json", - robot="OT2", - app_error=False, - robot_error=False, - description="""This protocol gives an error in PD.8-Channel pipette cannot access labware8-Channel pipettes cannot access labware or tip racks to the left or right of a Heater-Shaker GEN1 module. Move labware to a different slot to access it with an 8-Channel pipette.If you export it anyway there are NOT analysis errors in the app side analysis.TODO on if there are robot side analysis errors but do not expect them?""", # noqa: E501 - ) - OT2_S_v6_P20S_P300M_TransferReTransferLiquid: Protocol = Protocol( file_stem="OT2_S_v6_P20S_P300M_TransferReTransferLiquid", file_extension="json", @@ -299,8 +290,8 @@ class Protocols: robot_error=False, ) - OT2_X_v2_17_P300M_P20S_HS_TC_TM_dispense_changes: Protocol = Protocol( - file_stem="OT2_X_v2_17_P300M_P20S_HS_TC_TM_dispense_changes", + OT2_S_v2_17_P300M_P20S_HS_TC_TM_dispense_changes: Protocol = Protocol( + file_stem="OT2_S_v2_17_P300M_P20S_HS_TC_TM_dispense_changes", file_extension="py", robot="OT2", app_error=True, @@ -308,32 +299,32 @@ class Protocols: app_analysis_error="ValueError [line 15]: Cannot dispense more than pipette max volume", # noqa: E501 ) - OT2_S_v2_14_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots: Protocol = Protocol( - file_stem="OT2_S_v2_14_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots", + OT2_S_v2_14_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots: Protocol = Protocol( + file_stem="OT2_S_v2_14_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots", file_extension="py", robot="OT2", app_error=False, robot_error=False, ) - OT2_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots: Protocol = Protocol( - file_stem="OT2_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots", + OT2_S_v2_15_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots: Protocol = Protocol( + file_stem="OT2_S_v2_15_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots", file_extension="py", robot="OT2", app_error=False, robot_error=False, ) - OT2_X_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots: Protocol = Protocol( - file_stem="OT2_X_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots", + OT2_S_v2_16_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots: Protocol = Protocol( + file_stem="OT2_S_v2_16_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots", file_extension="py", robot="OT2", app_error=False, robot_error=False, ) - OT2_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots: Protocol = Protocol( - file_stem="OT2_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots", + OT2_S_v2_17_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots: Protocol = Protocol( + file_stem="OT2_S_v2_17_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots", file_extension="py", robot="OT2", app_error=False, @@ -603,32 +594,24 @@ class Protocols: robot_error=False, ) - Flex_S_v2_14_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots: Protocol = Protocol( - file_stem="Flex_S_v2_14_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots", - file_extension="py", - robot="Flex", - app_error=False, - robot_error=False, - ) - - Flex_S_v2_15_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots: Protocol = Protocol( - file_stem="Flex_S_v2_15_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots", + Flex_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots: Protocol = Protocol( + file_stem="Flex_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots", file_extension="py", robot="Flex", app_error=False, robot_error=False, ) - Flex_S_v2_16_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots: Protocol = Protocol( - file_stem="Flex_S_v2_16_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots", + Flex_S_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots: Protocol = Protocol( + file_stem="Flex_S_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots", file_extension="py", robot="Flex", app_error=False, robot_error=False, ) - Flex_S_v2_17_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots: Protocol = Protocol( - file_stem="Flex_S_v2_17_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots", + Flex_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots: Protocol = Protocol( + file_stem="Flex_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots", file_extension="py", robot="Flex", app_error=False, diff --git a/app-testing/example.env b/app-testing/example.env index 3bddafd75ba..749dddc4cf6 100644 --- a/app-testing/example.env +++ b/app-testing/example.env @@ -18,8 +18,7 @@ TARGET=edge # dynamically generate with make print-protocols APP_ANALYSIS_TEST_PROTOCOLS=" -Flex_S_v2_14_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots, -Flex_S_v2_15_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots, +Flex_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots, Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAEnrichment, Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAEnrichmentv4, Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAPrep24x, @@ -30,7 +29,7 @@ Flex_S_v2_15_P1000_96_GRIP_HS_MB_TM_MagMaxRNAExtraction, Flex_S_v2_15_P1000_96_GRIP_HS_MB_TM_OmegaHDQDNAExtraction, Flex_S_v2_15_P1000_96_GRIP_HS_TM_QuickZymoMagbeadRNAExtraction, Flex_S_v2_15_P50M_P1000M_KAPALibraryQuantLongv2, -Flex_S_v2_16_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots, +Flex_S_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots, Flex_S_v2_16_P1000_96_GRIP_DeckConfiguration1NoModules, Flex_S_v2_16_P1000_96_GRIP_DeckConfiguration1NoModulesNoFixtures, Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_DeckConfiguration1, @@ -39,7 +38,7 @@ Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_Smoke, Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_TriggerPrepareForMountMovement, Flex_S_v2_16_P1000_96_TC_PartialTipPickupColumn, Flex_S_v2_16_P1000_96_TC_PartialTipPickupSingle, -Flex_S_v2_17_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots, +Flex_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots, Flex_S_v2_18_NO_PIPETTES_GoldenRTP, Flex_X_v2_16_NO_PIPETTES_AccessToFixedTrashProp, Flex_X_v2_16_NO_PIPETTES_MM_MagneticModuleInFlexProtocol, @@ -65,19 +64,21 @@ OT2_S_v2_12_NO_PIPETTES_Python310SyntaxRobotAnalysisOnlyError, OT2_S_v2_12_P300M_P20S_FailOnRun, OT2_S_v2_13_P300M_P20S_HS_TC_TM_SmokeTestV3, OT2_S_v2_13_P300M_P20S_MM_TC_TM_Smoke620Release, -OT2_S_v2_14_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots, +OT2_S_v2_14_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots, OT2_S_v2_14_P300M_P20S_HS_TC_TM_SmokeTestV3, -OT2_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots, +OT2_S_v2_15_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots, OT2_S_v2_15_P300M_P20S_HS_TC_TM_SmokeTestV3, OT2_S_v2_15_P300M_P20S_HS_TC_TM_dispense_changes, +OT2_S_v2_16_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots, OT2_S_v2_16_NO_PIPETTES_verifyDoesNotDeadlock, OT2_S_v2_16_P300M_P20S_HS_TC_TM_SmokeTestV3, OT2_S_v2_16_P300M_P20S_HS_TC_TM_aspirateDispenseMix0Volume, OT2_S_v2_16_P300M_P20S_HS_TC_TM_dispense_changes, OT2_S_v2_16_P300M_P20S_aspirateDispenseMix0Volume, OT2_S_v2_16_P300S_None_verifyNoFloatingPointErrorInPipetting, -OT2_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots, +OT2_S_v2_17_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots, OT2_S_v2_17_P300M_P20S_HS_TC_TM_SmokeTestV3, +OT2_S_v2_17_P300M_P20S_HS_TC_TM_dispense_changes, OT2_S_v2_18_NO_PIPETTES_GoldenRTP_OT2, OT2_S_v2_18_None_None_duplicateChoiceValue, OT2_S_v2_2_P300S_None_MM1_MM2_EngageMagHeightFromBase, @@ -88,17 +89,14 @@ OT2_S_v3_P300SGen1_None_Gen1PipetteSimple, OT2_S_v4_P300M_P20S_MM_TM_TC1_PD40, OT2_S_v4_P300S_None_MM_TM_TM_MOAMTemps, OT2_S_v6_P1000S_None_SimpleTransfer, -OT2_S_v6_P20S_P300M_HS_HSCollision, OT2_S_v6_P20S_P300M_TransferReTransferLiquid, OT2_S_v6_P300M_P20S_HS_Smoke620release, OT2_S_v6_P300M_P20S_MixTransferManyLiquids, OT2_S_v6_P300M_P300S_HS_HS_NormalUseWithTransfer, OT2_X_v2_11_P300S_TC1_TC2_ThermocyclerMoamError, OT2_X_v2_13_None_None_PythonSyntaxError, -OT2_X_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots, OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin1, OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin2, -OT2_X_v2_17_P300M_P20S_HS_TC_TM_dispense_changes, OT2_X_v2_18_None_None_NoRTPdisplay_name, OT2_X_v2_18_None_None_StrRTPwith_unit, OT2_X_v2_18_None_None_duplicateRTPVariableName, @@ -107,7 +105,6 @@ OT2_X_v4_P300M_P20S_MM_TC1_TM_e2eTests, OT2_X_v6_P20S_None_SimpleTransfer, OT2_X_v6_P300M_P20S_HS_MM_TM_TC_AllMods " - APP_ANALYSIS_TEST_PROTOCOLS_WITH_OVERRIDES=" Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP, Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice, diff --git a/app-testing/files/protocols/Flex_S_v2_14_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots.py b/app-testing/files/protocols/Flex_S_v2_14_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots.py deleted file mode 100644 index 37705eb1695..00000000000 --- a/app-testing/files/protocols/Flex_S_v2_14_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots.py +++ /dev/null @@ -1,14 +0,0 @@ -# Pulled from: https://github.com/Opentrons/opentrons/pull/14491 - - -requirements = { - "robotType": "Flex", - "apiLevel": "2.14", -} - - -def run(protocol): - thermocycler = protocol.load_module("thermocycler module gen2") - - assert protocol.loaded_modules == {"B1": thermocycler} - assert protocol.deck["A1"] == thermocycler diff --git a/app-testing/files/generated_protocols/.keepme b/app-testing/files/protocols/generated_protocols/.keepme similarity index 100% rename from app-testing/files/generated_protocols/.keepme rename to app-testing/files/protocols/generated_protocols/.keepme diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5887e734b5][OT2_P10S_P300M_TC1_TM_MM_2_11_Swift].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[004ebb2b82][OT2_S_v2_11_P10S_P300M_MM_TC1_TM_Swift].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5887e734b5][OT2_P10S_P300M_TC1_TM_MM_2_11_Swift].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[004ebb2b82][OT2_S_v2_11_P10S_P300M_MM_TC1_TM_Swift].json index 4895a857732..3417b861aee 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5887e734b5][OT2_P10S_P300M_TC1_TM_MM_2_11_Swift].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[004ebb2b82][OT2_S_v2_11_P10S_P300M_MM_TC1_TM_Swift].json @@ -14171,7 +14171,7 @@ "errors": [], "files": [ { - "name": "OT2_P10S_P300M_TC1_TM_MM_2_11_Swift.py", + "name": "OT2_S_v2_11_P10S_P300M_MM_TC1_TM_Swift.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0f71566d05][OT2_P20S_None_2_7_Walkthrough].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[011481812b][OT2_S_v2_7_P20S_None_Walkthrough].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0f71566d05][OT2_P20S_None_2_7_Walkthrough].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[011481812b][OT2_S_v2_7_P20S_None_Walkthrough].json index 81399f2c81c..00b66fb4ffe 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0f71566d05][OT2_P20S_None_2_7_Walkthrough].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[011481812b][OT2_S_v2_7_P20S_None_Walkthrough].json @@ -4256,7 +4256,7 @@ "errors": [], "files": [ { - "name": "OT2_P20S_None_2_7_Walkthrough.py", + "name": "OT2_S_v2_7_P20S_None_Walkthrough.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a01dac3953][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0190369ce5][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_DeckConfiguration1NoFixtures].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a01dac3953][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0190369ce5][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_DeckConfiguration1NoFixtures].json index f478b321c65..c8790ada894 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a01dac3953][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0190369ce5][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_DeckConfiguration1NoFixtures].json @@ -10424,7 +10424,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures.py", + "name": "Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_DeckConfiguration1NoFixtures.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[aaab7be350][OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0256665840][OT2_S_v2_16_P300M_P20S_aspirateDispenseMix0Volume].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[aaab7be350][OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0256665840][OT2_S_v2_16_P300M_P20S_aspirateDispenseMix0Volume].json index da67ad1f73c..e9ad117dd38 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[aaab7be350][OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0256665840][OT2_S_v2_16_P300M_P20S_aspirateDispenseMix0Volume].json @@ -2775,7 +2775,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume.py", + "name": "OT2_S_v2_16_P300M_P20S_aspirateDispenseMix0Volume.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cf3e610e54][OT2_P300M_P20S_TC_HS_TM_2_15_dispense_changes].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[041ad55e7b][OT2_S_v2_15_P300M_P20S_HS_TC_TM_dispense_changes].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cf3e610e54][OT2_P300M_P20S_TC_HS_TM_2_15_dispense_changes].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[041ad55e7b][OT2_S_v2_15_P300M_P20S_HS_TC_TM_dispense_changes].json index 77bc98f5457..ab7e1ecff2e 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cf3e610e54][OT2_P300M_P20S_TC_HS_TM_2_15_dispense_changes].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[041ad55e7b][OT2_S_v2_15_P300M_P20S_HS_TC_TM_dispense_changes].json @@ -2965,7 +2965,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_TC_HS_TM_2_15_dispense_changes.py", + "name": "OT2_S_v2_15_P300M_P20S_HS_TC_TM_dispense_changes.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8d6b8b90fd][OT2_None_None_TC_2_14_VerifyThermocyclerLoadedSlots].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[09ba51132a][OT2_S_v2_14_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json similarity index 98% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8d6b8b90fd][OT2_None_None_TC_2_14_VerifyThermocyclerLoadedSlots].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[09ba51132a][OT2_S_v2_14_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json index 7184a2d4598..73d929454d4 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8d6b8b90fd][OT2_None_None_TC_2_14_VerifyThermocyclerLoadedSlots].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[09ba51132a][OT2_S_v2_14_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json @@ -127,7 +127,7 @@ "errors": [], "files": [ { - "name": "OT2_None_None_TC_2_14_VerifyThermocyclerLoadedSlots.py", + "name": "OT2_S_v2_14_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0a17df24cf][v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0a17df24cf][v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices].json deleted file mode 100644 index 609202e05e8..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0a17df24cf][v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "ParameterValueError [line 36]: Parameter must be set to one of the allowed values of {160.0, 100.0, 200.0}.", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be set to one of the allowed values of {160.0, 100.0, 200.0}.", - "errorCode": "4000", - "errorInfo": { - "args": "('Parameter must be set to one of the allowed values of {160.0, 100.0, 200.0}.',)", - "class": "ParameterValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices.py\", line 36, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 91, in add_float\n parameter = parameter_definition.create_float_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 202, in create_float_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 95, in value\n raise ParameterValueError(\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "default choice does not match a choice" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0ac062e151][OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0ac062e151][OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error].json deleted file mode 100644 index 5667321899b..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0ac062e151][OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error].json +++ /dev/null @@ -1,5336 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "loadPipette", - "notes": [], - "params": { - "mount": "left", - "pipetteName": "p300_single_gen2" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "loadPipette", - "notes": [], - "params": { - "mount": "right", - "pipetteName": "p300_multi_gen2" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "loadModule", - "notes": [], - "params": { - "location": { - "slotName": "1" - }, - "model": "heaterShakerModuleV1" - }, - "result": { - "definition": { - "calibrationPoint": { - "x": 12.0, - "y": 8.75, - "z": 68.275 - }, - "compatibleWith": [], - "dimensions": { - "bareOverallHeight": 82.0, - "overLabwareHeight": 0.0 - }, - "displayName": "Heater-Shaker Module GEN1", - "gripperOffsets": { - "default": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - } - }, - "labwareOffset": { - "x": -0.125, - "y": 1.125, - "z": 68.275 - }, - "model": "heaterShakerModuleV1", - "moduleType": "heaterShakerModuleType", - "otSharedSchema": "module/schemas/2", - "quirks": [], - "slotTransforms": { - "ot2_short_trash": { - "3": { - "labwareOffset": [ - [ - -1, - 0, - 0, - 0 - ], - [ - -1, - 0, - 0, - 0 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ] - ] - }, - "6": { - "labwareOffset": [ - [ - -1, - 0, - 0, - 0 - ], - [ - -1, - 0, - 0, - 0 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ] - ] - }, - "9": { - "labwareOffset": [ - [ - -1, - 0, - 0, - 0 - ], - [ - -1, - 0, - 0, - 0 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ] - ] - } - }, - "ot2_standard": { - "3": { - "labwareOffset": [ - [ - -1, - 0, - 0, - 0 - ], - [ - -1, - 0, - 0, - 0 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ] - ] - }, - "6": { - "labwareOffset": [ - [ - -1, - 0, - 0, - 0 - ], - [ - -1, - 0, - 0, - 0 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ] - ] - }, - "9": { - "labwareOffset": [ - [ - -1, - 0, - 0, - 0 - ], - [ - -1, - 0, - 0, - 0 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ] - ] - } - }, - "ot3_standard": { - "A1": { - "labwareOffset": [ - [ - -49.325, - 0, - 0, - 1 - ], - [ - -1.125, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0.125, - 1 - ] - ] - }, - "A3": { - "labwareOffset": [ - [ - -49.325, - 0, - 0, - 1 - ], - [ - -1.125, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0.125, - 1 - ] - ] - }, - "B1": { - "labwareOffset": [ - [ - -49.325, - 0, - 0, - 1 - ], - [ - -1.125, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0.125, - 1 - ] - ] - }, - "B3": { - "labwareOffset": [ - [ - -49.325, - 0, - 0, - 1 - ], - [ - -1.125, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0.125, - 1 - ] - ] - }, - "C1": { - "labwareOffset": [ - [ - -49.325, - 0, - 0, - 1 - ], - [ - -1.125, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0.125, - 1 - ] - ] - }, - "C3": { - "labwareOffset": [ - [ - -49.325, - 0, - 0, - 1 - ], - [ - -1.125, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0.125, - 1 - ] - ] - }, - "D1": { - "labwareOffset": [ - [ - -49.325, - 0, - 0, - 1 - ], - [ - -1.125, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0.125, - 1 - ] - ] - }, - "D3": { - "labwareOffset": [ - [ - -49.325, - 0, - 0, - 1 - ], - [ - -1.125, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0, - 1 - ], - [ - 0, - 0, - 0.125, - 1 - ] - ] - } - } - } - }, - "model": "heaterShakerModuleV1" - }, - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "notes": [], - "params": { - "displayName": "Opentrons 96 Tip Rack 300 µL", - "loadName": "opentrons_96_tiprack_300ul", - "location": { - "slotName": "2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 64.49 - }, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons 96 Tip Rack 300 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_96_tiprack_300ul", - "tipLength": 59.3, - "tipOverlap": 7.47 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 74.24, - "z": 5.39 - }, - "A10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 74.24, - "z": 5.39 - }, - "A11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 74.24, - "z": 5.39 - }, - "A12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 74.24, - "z": 5.39 - }, - "A2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 74.24, - "z": 5.39 - }, - "A3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 74.24, - "z": 5.39 - }, - "A4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 74.24, - "z": 5.39 - }, - "A5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 74.24, - "z": 5.39 - }, - "A6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 74.24, - "z": 5.39 - }, - "A7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 74.24, - "z": 5.39 - }, - "A8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 74.24, - "z": 5.39 - }, - "A9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 74.24, - "z": 5.39 - }, - "B1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 65.24, - "z": 5.39 - }, - "B10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 65.24, - "z": 5.39 - }, - "B11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 65.24, - "z": 5.39 - }, - "B12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 65.24, - "z": 5.39 - }, - "B2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 65.24, - "z": 5.39 - }, - "B3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 65.24, - "z": 5.39 - }, - "B4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 65.24, - "z": 5.39 - }, - "B5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 65.24, - "z": 5.39 - }, - "B6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 65.24, - "z": 5.39 - }, - "B7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 65.24, - "z": 5.39 - }, - "B8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 65.24, - "z": 5.39 - }, - "B9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 65.24, - "z": 5.39 - }, - "C1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 56.24, - "z": 5.39 - }, - "C10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 56.24, - "z": 5.39 - }, - "C11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 56.24, - "z": 5.39 - }, - "C12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 56.24, - "z": 5.39 - }, - "C2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 56.24, - "z": 5.39 - }, - "C3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 56.24, - "z": 5.39 - }, - "C4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 56.24, - "z": 5.39 - }, - "C5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 56.24, - "z": 5.39 - }, - "C6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 56.24, - "z": 5.39 - }, - "C7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 56.24, - "z": 5.39 - }, - "C8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 56.24, - "z": 5.39 - }, - "C9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 56.24, - "z": 5.39 - }, - "D1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 47.24, - "z": 5.39 - }, - "D10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 47.24, - "z": 5.39 - }, - "D11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 47.24, - "z": 5.39 - }, - "D12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 47.24, - "z": 5.39 - }, - "D2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 47.24, - "z": 5.39 - }, - "D3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 47.24, - "z": 5.39 - }, - "D4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 47.24, - "z": 5.39 - }, - "D5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 47.24, - "z": 5.39 - }, - "D6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 47.24, - "z": 5.39 - }, - "D7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 47.24, - "z": 5.39 - }, - "D8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 47.24, - "z": 5.39 - }, - "D9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 47.24, - "z": 5.39 - }, - "E1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 38.24, - "z": 5.39 - }, - "E10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 38.24, - "z": 5.39 - }, - "E11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 38.24, - "z": 5.39 - }, - "E12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 38.24, - "z": 5.39 - }, - "E2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 38.24, - "z": 5.39 - }, - "E3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 38.24, - "z": 5.39 - }, - "E4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 38.24, - "z": 5.39 - }, - "E5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 38.24, - "z": 5.39 - }, - "E6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 38.24, - "z": 5.39 - }, - "E7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 38.24, - "z": 5.39 - }, - "E8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 38.24, - "z": 5.39 - }, - "E9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 38.24, - "z": 5.39 - }, - "F1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 29.24, - "z": 5.39 - }, - "F10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 29.24, - "z": 5.39 - }, - "F11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 29.24, - "z": 5.39 - }, - "F12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 29.24, - "z": 5.39 - }, - "F2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 29.24, - "z": 5.39 - }, - "F3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 29.24, - "z": 5.39 - }, - "F4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 29.24, - "z": 5.39 - }, - "F5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 29.24, - "z": 5.39 - }, - "F6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 29.24, - "z": 5.39 - }, - "F7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 29.24, - "z": 5.39 - }, - "F8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 29.24, - "z": 5.39 - }, - "F9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 29.24, - "z": 5.39 - }, - "G1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 20.24, - "z": 5.39 - }, - "G10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 20.24, - "z": 5.39 - }, - "G11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 20.24, - "z": 5.39 - }, - "G12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 20.24, - "z": 5.39 - }, - "G2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 20.24, - "z": 5.39 - }, - "G3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 20.24, - "z": 5.39 - }, - "G4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 20.24, - "z": 5.39 - }, - "G5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 20.24, - "z": 5.39 - }, - "G6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 20.24, - "z": 5.39 - }, - "G7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 20.24, - "z": 5.39 - }, - "G8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 20.24, - "z": 5.39 - }, - "G9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 20.24, - "z": 5.39 - }, - "H1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 11.24, - "z": 5.39 - }, - "H10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 11.24, - "z": 5.39 - }, - "H11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 11.24, - "z": 5.39 - }, - "H12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 11.24, - "z": 5.39 - }, - "H2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 11.24, - "z": 5.39 - }, - "H3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 11.24, - "z": 5.39 - }, - "H4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 11.24, - "z": 5.39 - }, - "H5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 11.24, - "z": 5.39 - }, - "H6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 11.24, - "z": 5.39 - }, - "H7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 11.24, - "z": 5.39 - }, - "H8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 11.24, - "z": 5.39 - }, - "H9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 11.24, - "z": 5.39 - } - } - } - }, - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "notes": [], - "params": { - "displayName": "H/S", - "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", - "location": {}, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.3, - "zDimension": 42.25 - }, - "gripperOffsets": {}, - "groups": [ - { - "brand": { - "brand": "NEST", - "brandId": [ - "503001", - "503501" - ], - "links": [ - "https://www.nest-biotech.com/deep-well-plates/59253726.html" - ] - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deepwell Plate 2mL", - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "aluminumBlock", - "displayName": "Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "A9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "B9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "C9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "D9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "E9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "F9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "G9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - }, - "H9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 4.25 - } - } - } - }, - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "notes": [], - "params": { - "displayName": "Opentrons 96 Tip Rack 300 µL (1)", - "loadName": "opentrons_96_tiprack_300ul", - "location": { - "slotName": "4" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 64.49 - }, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons 96 Tip Rack 300 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_96_tiprack_300ul", - "tipLength": 59.3, - "tipOverlap": 7.47 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 74.24, - "z": 5.39 - }, - "A10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 74.24, - "z": 5.39 - }, - "A11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 74.24, - "z": 5.39 - }, - "A12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 74.24, - "z": 5.39 - }, - "A2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 74.24, - "z": 5.39 - }, - "A3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 74.24, - "z": 5.39 - }, - "A4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 74.24, - "z": 5.39 - }, - "A5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 74.24, - "z": 5.39 - }, - "A6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 74.24, - "z": 5.39 - }, - "A7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 74.24, - "z": 5.39 - }, - "A8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 74.24, - "z": 5.39 - }, - "A9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 74.24, - "z": 5.39 - }, - "B1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 65.24, - "z": 5.39 - }, - "B10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 65.24, - "z": 5.39 - }, - "B11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 65.24, - "z": 5.39 - }, - "B12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 65.24, - "z": 5.39 - }, - "B2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 65.24, - "z": 5.39 - }, - "B3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 65.24, - "z": 5.39 - }, - "B4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 65.24, - "z": 5.39 - }, - "B5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 65.24, - "z": 5.39 - }, - "B6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 65.24, - "z": 5.39 - }, - "B7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 65.24, - "z": 5.39 - }, - "B8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 65.24, - "z": 5.39 - }, - "B9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 65.24, - "z": 5.39 - }, - "C1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 56.24, - "z": 5.39 - }, - "C10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 56.24, - "z": 5.39 - }, - "C11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 56.24, - "z": 5.39 - }, - "C12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 56.24, - "z": 5.39 - }, - "C2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 56.24, - "z": 5.39 - }, - "C3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 56.24, - "z": 5.39 - }, - "C4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 56.24, - "z": 5.39 - }, - "C5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 56.24, - "z": 5.39 - }, - "C6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 56.24, - "z": 5.39 - }, - "C7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 56.24, - "z": 5.39 - }, - "C8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 56.24, - "z": 5.39 - }, - "C9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 56.24, - "z": 5.39 - }, - "D1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 47.24, - "z": 5.39 - }, - "D10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 47.24, - "z": 5.39 - }, - "D11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 47.24, - "z": 5.39 - }, - "D12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 47.24, - "z": 5.39 - }, - "D2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 47.24, - "z": 5.39 - }, - "D3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 47.24, - "z": 5.39 - }, - "D4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 47.24, - "z": 5.39 - }, - "D5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 47.24, - "z": 5.39 - }, - "D6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 47.24, - "z": 5.39 - }, - "D7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 47.24, - "z": 5.39 - }, - "D8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 47.24, - "z": 5.39 - }, - "D9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 47.24, - "z": 5.39 - }, - "E1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 38.24, - "z": 5.39 - }, - "E10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 38.24, - "z": 5.39 - }, - "E11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 38.24, - "z": 5.39 - }, - "E12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 38.24, - "z": 5.39 - }, - "E2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 38.24, - "z": 5.39 - }, - "E3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 38.24, - "z": 5.39 - }, - "E4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 38.24, - "z": 5.39 - }, - "E5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 38.24, - "z": 5.39 - }, - "E6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 38.24, - "z": 5.39 - }, - "E7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 38.24, - "z": 5.39 - }, - "E8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 38.24, - "z": 5.39 - }, - "E9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 38.24, - "z": 5.39 - }, - "F1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 29.24, - "z": 5.39 - }, - "F10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 29.24, - "z": 5.39 - }, - "F11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 29.24, - "z": 5.39 - }, - "F12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 29.24, - "z": 5.39 - }, - "F2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 29.24, - "z": 5.39 - }, - "F3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 29.24, - "z": 5.39 - }, - "F4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 29.24, - "z": 5.39 - }, - "F5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 29.24, - "z": 5.39 - }, - "F6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 29.24, - "z": 5.39 - }, - "F7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 29.24, - "z": 5.39 - }, - "F8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 29.24, - "z": 5.39 - }, - "F9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 29.24, - "z": 5.39 - }, - "G1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 20.24, - "z": 5.39 - }, - "G10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 20.24, - "z": 5.39 - }, - "G11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 20.24, - "z": 5.39 - }, - "G12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 20.24, - "z": 5.39 - }, - "G2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 20.24, - "z": 5.39 - }, - "G3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 20.24, - "z": 5.39 - }, - "G4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 20.24, - "z": 5.39 - }, - "G5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 20.24, - "z": 5.39 - }, - "G6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 20.24, - "z": 5.39 - }, - "G7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 20.24, - "z": 5.39 - }, - "G8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 20.24, - "z": 5.39 - }, - "G9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 20.24, - "z": 5.39 - }, - "H1": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 14.38, - "y": 11.24, - "z": 5.39 - }, - "H10": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 95.38, - "y": 11.24, - "z": 5.39 - }, - "H11": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 104.38, - "y": 11.24, - "z": 5.39 - }, - "H12": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 113.38, - "y": 11.24, - "z": 5.39 - }, - "H2": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 23.38, - "y": 11.24, - "z": 5.39 - }, - "H3": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 32.38, - "y": 11.24, - "z": 5.39 - }, - "H4": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 41.38, - "y": 11.24, - "z": 5.39 - }, - "H5": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 50.38, - "y": 11.24, - "z": 5.39 - }, - "H6": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 59.38, - "y": 11.24, - "z": 5.39 - }, - "H7": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 68.38, - "y": 11.24, - "z": 5.39 - }, - "H8": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 77.38, - "y": 11.24, - "z": 5.39 - }, - "H9": { - "depth": 59.3, - "diameter": 5.23, - "shape": "circular", - "totalLiquidVolume": 300, - "x": 86.38, - "y": 11.24, - "z": 5.39 - } - } - } - }, - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "notes": [], - "params": { - "displayName": "1", - "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", - "location": { - "slotName": "5" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Thermo Scientific", - "brandId": [ - "AB2396" - ], - "links": [ - "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16 - }, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - } - }, - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "notes": [], - "params": { - "volumeByWell": { - "A1": 100.0, - "A2": 100.0, - "A3": 100.0, - "B1": 100.0, - "B2": 100.0, - "B3": 100.0, - "C1": 100.0, - "C2": 100.0, - "C3": 100.0, - "D1": 100.0, - "D2": 100.0, - "D3": 100.0, - "E1": 100.0, - "E2": 100.0, - "E3": 100.0, - "F1": 100.0, - "F2": 100.0, - "F3": 100.0, - "G1": 100.0, - "G2": 100.0, - "G3": 100.0, - "H1": 100.0, - "H2": 100.0, - "H3": 100.0 - } - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "heaterShaker/deactivateHeater", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "heaterShaker/deactivateShaker", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "protocolType": "json", - "schemaVersion": 6 - }, - "errors": [], - "files": [ - { - "name": "OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error.json", - "role": "main" - }, - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - } - ], - "labware": [ - { - "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", - "loadName": "opentrons_1_trash_1100ml_fixed", - "location": { - "slotName": "12" - } - }, - { - "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", - "displayName": "Opentrons 96 Tip Rack 300 µL", - "loadName": "opentrons_96_tiprack_300ul", - "location": { - "slotName": "2" - } - }, - { - "definitionUri": "opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1", - "displayName": "H/S", - "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", - "location": {} - }, - { - "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", - "displayName": "Opentrons 96 Tip Rack 300 µL (1)", - "loadName": "opentrons_96_tiprack_300ul", - "location": { - "slotName": "4" - } - }, - { - "definitionUri": "opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1", - "displayName": "1", - "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", - "location": { - "slotName": "5" - } - } - ], - "liquids": [ - { - "description": "", - "displayColor": "#b925ff", - "displayName": "Water" - } - ], - "metadata": { - "author": "", - "category": null, - "description": "", - "protocolName": "HS Collision", - "subcategory": null, - "tags": [] - }, - "modules": [ - { - "location": { - "slotName": "1" - }, - "model": "heaterShakerModuleV1" - } - ], - "pipettes": [ - { - "mount": "left", - "pipetteName": "p300_single_gen2" - }, - { - "mount": "right", - "pipetteName": "p300_multi_gen2" - } - ], - "robotType": "OT-2 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0affe60373][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0affe60373][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum].json index e413eb3c896..79195fd87fe 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0affe60373][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0affe60373][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 2, - "command_output": "Usage: python -m opentrons.cli analyze [OPTIONS] FILES...\nTry 'python -m opentrons.cli analyze --help' for help.\n\nError: Invalid value for 'FILES...': Path '/var/lib/ot/protocols/generated_protocols/Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum.py' does not exist.\n" + "detail": "ParameterDefinitionError [line 104]: Maximum is type 'str', but must be of parameter type 'int'", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterDefinitionError: Maximum is type 'str', but must be of parameter type 'int'", + "errorCode": "4000", + "errorInfo": { + "args": "(\"Maximum is type 'str', but must be of parameter type 'int'\",)", + "class": "ParameterDefinitionError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum.py\", line 104, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 56, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 73, in __init__\n validation.validate_options(default, minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 266, in validate_options\n _validate_min_and_max(minimum, maximum, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 218, in _validate_min_and_max\n raise ParameterDefinitionError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Description Too Long 2.18" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6248d65532][OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0c4ae179bb][OT2_S_v2_15_P300M_P20S_HS_TC_TM_SmokeTestV3].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6248d65532][OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0c4ae179bb][OT2_S_v2_15_P300M_P20S_HS_TC_TM_SmokeTestV3].json index 0fa87b61d1f..af14e1c5793 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6248d65532][OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0c4ae179bb][OT2_S_v2_15_P300M_P20S_HS_TC_TM_SmokeTestV3].json @@ -15295,7 +15295,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3.py", + "name": "OT2_S_v2_15_P300M_P20S_HS_TC_TM_SmokeTestV3.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0de4401f66][v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0de4401f66][v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum].json deleted file mode 100644 index 6d089f38b52..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0de4401f66][v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "ParameterValueError [line 32]: Parameter must be between 1 and 3 inclusive.", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be between 1 and 3 inclusive.", - "errorCode": "4000", - "errorInfo": { - "args": "('Parameter must be between 1 and 3 inclusive.',)", - "class": "ParameterValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum.py\", line 32, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 55, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 104, in value\n raise ParameterValueError(\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Default not in range" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1312a4eb81][Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[10d250f82a][Flex_S_v2_15_P1000_96_GRIP_HS_TM_QuickZymoMagbeadRNAExtraction].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1312a4eb81][Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[10d250f82a][Flex_S_v2_15_P1000_96_GRIP_HS_TM_QuickZymoMagbeadRNAExtraction].json index 5ee46e4e231..6c84830df87 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1312a4eb81][Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[10d250f82a][Flex_S_v2_15_P1000_96_GRIP_HS_TM_QuickZymoMagbeadRNAExtraction].json @@ -13216,7 +13216,7 @@ ], "files": [ { - "name": "Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria.py", + "name": "Flex_S_v2_15_P1000_96_GRIP_HS_TM_QuickZymoMagbeadRNAExtraction.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7ea2fdcec4][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[12a2a22254][Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAEnrichment].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7ea2fdcec4][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[12a2a22254][Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAEnrichment].json index 54003322788..205a09ef18e 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7ea2fdcec4][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[12a2a22254][Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAEnrichment].json @@ -9555,7 +9555,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 50.0, "wellLocation": { "offset": { @@ -9581,7 +9581,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -9667,7 +9667,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -9693,7 +9693,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -9779,7 +9779,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -9805,7 +9805,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -9855,7 +9855,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 90.0, "wellLocation": { "offset": { @@ -9881,7 +9881,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 90.0, "wellLocation": { "offset": { @@ -9991,7 +9991,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 121.0, "wellLocation": { "offset": { @@ -10017,7 +10017,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.0, "wellLocation": { "offset": { @@ -10043,7 +10043,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 121.0, "wellLocation": { "offset": { @@ -10069,7 +10069,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.0, "wellLocation": { "offset": { @@ -10095,7 +10095,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 121.0, "wellLocation": { "offset": { @@ -10121,7 +10121,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.0, "wellLocation": { "offset": { @@ -10147,7 +10147,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 121.0, "wellLocation": { "offset": { @@ -10173,7 +10173,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.0, "wellLocation": { "offset": { @@ -10283,7 +10283,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 101.0, "wellLocation": { "offset": { @@ -10309,7 +10309,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 101.0, "wellLocation": { "offset": { @@ -10402,7 +10402,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10428,7 +10428,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10454,7 +10454,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10480,7 +10480,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10506,7 +10506,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10532,7 +10532,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10558,7 +10558,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10584,7 +10584,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10610,7 +10610,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10636,7 +10636,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10662,7 +10662,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10688,7 +10688,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -10714,7 +10714,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -10740,7 +10740,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -10766,7 +10766,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -10792,7 +10792,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -10842,7 +10842,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -10892,7 +10892,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -10918,7 +10918,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -10968,7 +10968,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -10994,7 +10994,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -11044,7 +11044,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -11070,7 +11070,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -11120,7 +11120,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -11146,7 +11146,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -11408,7 +11408,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -11434,7 +11434,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -11460,7 +11460,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -11486,7 +11486,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -11545,7 +11545,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -11569,7 +11569,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11701,7 +11701,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -11727,7 +11727,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -11916,7 +11916,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -11975,7 +11975,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12025,7 +12025,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12060,7 +12060,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -12084,7 +12084,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12206,7 +12206,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12232,7 +12232,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12421,7 +12421,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12480,7 +12480,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12530,7 +12530,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12565,7 +12565,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -12589,7 +12589,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12711,7 +12711,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12737,7 +12737,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12926,7 +12926,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12985,7 +12985,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13035,7 +13035,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -13070,7 +13070,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -13094,7 +13094,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -13216,7 +13216,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -13242,7 +13242,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -13370,7 +13370,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -13396,7 +13396,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -13551,7 +13551,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13610,7 +13610,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13660,7 +13660,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -13695,7 +13695,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -13719,7 +13719,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -13829,7 +13829,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 50.0, "wellLocation": { "offset": { @@ -13855,7 +13855,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -13890,7 +13890,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 57.0, "wellLocation": { "offset": { "x": 0.0, @@ -14052,7 +14052,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 23.0, "wellLocation": { "offset": { @@ -14078,7 +14078,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 23.0, "wellLocation": { "offset": { @@ -14294,7 +14294,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 22.0, "wellLocation": { "offset": { @@ -14320,7 +14320,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 22.0, "wellLocation": { "offset": { @@ -14406,7 +14406,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 4.0, "wellLocation": { "offset": { @@ -14432,7 +14432,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 4.0, "wellLocation": { "offset": { @@ -14482,7 +14482,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -14508,7 +14508,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -14624,7 +14624,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 5.0, "wellLocation": { "offset": { @@ -14650,7 +14650,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 5.0, "wellLocation": { "offset": { @@ -14736,7 +14736,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -14762,7 +14762,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -14812,7 +14812,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 45.0, "wellLocation": { "offset": { @@ -14838,7 +14838,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 45.0, "wellLocation": { "offset": { @@ -15021,7 +15021,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 46.0, "wellLocation": { "offset": { @@ -15047,7 +15047,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 46.0, "wellLocation": { "offset": { @@ -15133,7 +15133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -15159,7 +15159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -15185,7 +15185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -15211,7 +15211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -15261,7 +15261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -15311,7 +15311,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -15337,7 +15337,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -15387,7 +15387,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -15413,7 +15413,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -15463,7 +15463,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -15489,7 +15489,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -15539,7 +15539,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -15565,7 +15565,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -15808,7 +15808,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15867,7 +15867,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15917,7 +15917,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -15952,7 +15952,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -16084,7 +16084,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -16206,7 +16206,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -16241,7 +16241,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -16421,7 +16421,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16480,7 +16480,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16530,7 +16530,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16565,7 +16565,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -16697,7 +16697,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -16819,7 +16819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -16854,7 +16854,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -17034,7 +17034,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17093,7 +17093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17143,7 +17143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -17178,7 +17178,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -17334,7 +17334,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -17360,7 +17360,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -17395,7 +17395,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -17563,7 +17563,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -17613,7 +17613,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -17663,7 +17663,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -17713,7 +17713,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -17763,7 +17763,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -17813,7 +17813,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -17863,7 +17863,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -17913,7 +17913,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -17963,7 +17963,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -17989,7 +17989,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -18015,7 +18015,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -18258,7 +18258,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -18284,7 +18284,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -18341,7 +18341,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment.py", + "name": "Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAEnrichment.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[52a42597a5][OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[134037b2aa][OT2_X_v6_P300M_P20S_HS_MM_TM_TC_AllMods].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[52a42597a5][OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[134037b2aa][OT2_X_v6_P300M_P20S_HS_MM_TM_TC_AllMods].json index b36a44a5457..a55bcdcad04 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[52a42597a5][OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[134037b2aa][OT2_X_v6_P300M_P20S_HS_MM_TM_TC_AllMods].json @@ -7297,7 +7297,7 @@ ], "files": [ { - "name": "OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error.json", + "name": "OT2_X_v6_P300M_P20S_HS_MM_TM_TC_AllMods.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[37c9086bf4][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1960aa7a4c][Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAEnrichmentv4].json similarity index 97% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[37c9086bf4][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1960aa7a4c][Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAEnrichmentv4].json index 0693b30cc54..28e91a90e8e 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[37c9086bf4][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1960aa7a4c][Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAEnrichmentv4].json @@ -11818,7 +11818,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 101.0, "wellLocation": { "offset": { @@ -11844,7 +11844,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 101.0, "wellLocation": { "offset": { @@ -11944,7 +11944,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 101.0, "wellLocation": { "offset": { @@ -11970,7 +11970,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 101.0, "wellLocation": { "offset": { @@ -12070,7 +12070,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 101.0, "wellLocation": { "offset": { @@ -12096,7 +12096,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 101.0, "wellLocation": { "offset": { @@ -12189,7 +12189,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12215,7 +12215,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12241,7 +12241,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -12267,7 +12267,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -12293,7 +12293,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -12319,7 +12319,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -12369,7 +12369,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12419,7 +12419,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -12445,7 +12445,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -12495,7 +12495,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12521,7 +12521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12571,7 +12571,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -12597,7 +12597,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -12647,7 +12647,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12673,7 +12673,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -12819,7 +12819,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12845,7 +12845,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12871,7 +12871,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -12897,7 +12897,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -12923,7 +12923,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -12949,7 +12949,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -12999,7 +12999,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13049,7 +13049,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -13075,7 +13075,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -13125,7 +13125,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13151,7 +13151,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13201,7 +13201,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -13227,7 +13227,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -13277,7 +13277,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13303,7 +13303,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -13449,7 +13449,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -13475,7 +13475,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -13501,7 +13501,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -13527,7 +13527,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -13553,7 +13553,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -13579,7 +13579,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -13629,7 +13629,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13679,7 +13679,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -13705,7 +13705,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -13755,7 +13755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13781,7 +13781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13831,7 +13831,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -13857,7 +13857,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -13907,7 +13907,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13933,7 +13933,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -14215,7 +14215,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14241,7 +14241,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14291,7 +14291,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14317,7 +14317,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14376,7 +14376,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -14400,7 +14400,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -14500,7 +14500,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14526,7 +14526,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14576,7 +14576,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14602,7 +14602,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14661,7 +14661,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -14685,7 +14685,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -14785,7 +14785,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14811,7 +14811,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14861,7 +14861,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14887,7 +14887,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14946,7 +14946,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -14970,7 +14970,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -15102,7 +15102,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -15128,7 +15128,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -15204,7 +15204,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -15230,7 +15230,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -15306,7 +15306,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -15332,7 +15332,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -15514,7 +15514,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15573,7 +15573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15623,7 +15623,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -15658,7 +15658,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -15682,7 +15682,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -15782,7 +15782,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15841,7 +15841,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15891,7 +15891,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -15926,7 +15926,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -15950,7 +15950,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -16050,7 +16050,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16109,7 +16109,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16159,7 +16159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16194,7 +16194,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -16218,7 +16218,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -16340,7 +16340,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16366,7 +16366,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16442,7 +16442,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16468,7 +16468,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16544,7 +16544,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16570,7 +16570,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16752,7 +16752,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16811,7 +16811,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16861,7 +16861,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16896,7 +16896,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -16920,7 +16920,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -17020,7 +17020,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17079,7 +17079,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17129,7 +17129,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -17164,7 +17164,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -17188,7 +17188,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -17288,7 +17288,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17347,7 +17347,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17397,7 +17397,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -17432,7 +17432,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -17456,7 +17456,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -17578,7 +17578,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -17604,7 +17604,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -17680,7 +17680,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -17706,7 +17706,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -17782,7 +17782,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -17808,7 +17808,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -17990,7 +17990,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18049,7 +18049,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18099,7 +18099,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18134,7 +18134,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -18158,7 +18158,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -18258,7 +18258,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18317,7 +18317,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18367,7 +18367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18402,7 +18402,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -18426,7 +18426,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -18526,7 +18526,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18585,7 +18585,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18635,7 +18635,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18670,7 +18670,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -18694,7 +18694,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -18816,7 +18816,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18842,7 +18842,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18918,7 +18918,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18944,7 +18944,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -19020,7 +19020,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -19046,7 +19046,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -19174,7 +19174,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -19200,7 +19200,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -19300,7 +19300,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -19326,7 +19326,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -19426,7 +19426,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -19452,7 +19452,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -19600,7 +19600,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -19659,7 +19659,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -19709,7 +19709,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -19744,7 +19744,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -19768,7 +19768,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -19868,7 +19868,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -19927,7 +19927,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -19977,7 +19977,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -20012,7 +20012,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -20036,7 +20036,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -20136,7 +20136,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -20195,7 +20195,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -20245,7 +20245,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -20280,7 +20280,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -20304,7 +20304,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -20414,7 +20414,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 50.0, "wellLocation": { "offset": { @@ -20440,7 +20440,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -20475,7 +20475,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 57.0, "wellLocation": { "offset": { "x": 0.0, @@ -20621,7 +20621,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 50.0, "wellLocation": { "offset": { @@ -20647,7 +20647,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -20682,7 +20682,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 57.0, "wellLocation": { "offset": { "x": 0.0, @@ -20828,7 +20828,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 50.0, "wellLocation": { "offset": { @@ -20854,7 +20854,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -20889,7 +20889,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 57.0, "wellLocation": { "offset": { "x": 0.0, @@ -21051,7 +21051,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 23.0, "wellLocation": { "offset": { @@ -21077,7 +21077,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 23.0, "wellLocation": { "offset": { @@ -21153,7 +21153,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 23.0, "wellLocation": { "offset": { @@ -21179,7 +21179,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 23.0, "wellLocation": { "offset": { @@ -21255,7 +21255,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 23.0, "wellLocation": { "offset": { @@ -21281,7 +21281,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 23.0, "wellLocation": { "offset": { @@ -21499,7 +21499,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 22.0, "wellLocation": { "offset": { @@ -21525,7 +21525,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 22.0, "wellLocation": { "offset": { @@ -21625,7 +21625,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 22.0, "wellLocation": { "offset": { @@ -21651,7 +21651,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 22.0, "wellLocation": { "offset": { @@ -21751,7 +21751,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 22.0, "wellLocation": { "offset": { @@ -21777,7 +21777,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 22.0, "wellLocation": { "offset": { @@ -21863,7 +21863,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 4.0, "wellLocation": { "offset": { @@ -21889,7 +21889,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 4.0, "wellLocation": { "offset": { @@ -21939,7 +21939,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -21965,7 +21965,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -22041,7 +22041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 4.0, "wellLocation": { "offset": { @@ -22067,7 +22067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 4.0, "wellLocation": { "offset": { @@ -22117,7 +22117,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -22143,7 +22143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -22219,7 +22219,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 4.0, "wellLocation": { "offset": { @@ -22245,7 +22245,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 4.0, "wellLocation": { "offset": { @@ -22295,7 +22295,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -22321,7 +22321,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -22437,7 +22437,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 5.0, "wellLocation": { "offset": { @@ -22463,7 +22463,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 5.0, "wellLocation": { "offset": { @@ -22539,7 +22539,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 5.0, "wellLocation": { "offset": { @@ -22565,7 +22565,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 5.0, "wellLocation": { "offset": { @@ -22641,7 +22641,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 5.0, "wellLocation": { "offset": { @@ -22667,7 +22667,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 5.0, "wellLocation": { "offset": { @@ -22753,7 +22753,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -22779,7 +22779,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -22829,7 +22829,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 45.0, "wellLocation": { "offset": { @@ -22855,7 +22855,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 45.0, "wellLocation": { "offset": { @@ -22931,7 +22931,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -22957,7 +22957,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -23007,7 +23007,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 45.0, "wellLocation": { "offset": { @@ -23033,7 +23033,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 45.0, "wellLocation": { "offset": { @@ -23109,7 +23109,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -23135,7 +23135,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -23185,7 +23185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 45.0, "wellLocation": { "offset": { @@ -23211,7 +23211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 45.0, "wellLocation": { "offset": { @@ -23387,7 +23387,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 46.0, "wellLocation": { "offset": { @@ -23413,7 +23413,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 46.0, "wellLocation": { "offset": { @@ -23513,7 +23513,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 46.0, "wellLocation": { "offset": { @@ -23539,7 +23539,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 46.0, "wellLocation": { "offset": { @@ -23639,7 +23639,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 46.0, "wellLocation": { "offset": { @@ -23665,7 +23665,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 46.0, "wellLocation": { "offset": { @@ -23751,7 +23751,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -23777,7 +23777,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -23803,7 +23803,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -23829,7 +23829,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -23879,7 +23879,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23929,7 +23929,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23955,7 +23955,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24005,7 +24005,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -24031,7 +24031,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24081,7 +24081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24107,7 +24107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24157,7 +24157,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -24183,7 +24183,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -24329,7 +24329,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -24355,7 +24355,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -24381,7 +24381,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -24407,7 +24407,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -24457,7 +24457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24507,7 +24507,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24533,7 +24533,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24583,7 +24583,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -24609,7 +24609,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24659,7 +24659,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24685,7 +24685,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24735,7 +24735,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -24761,7 +24761,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -24907,7 +24907,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -24933,7 +24933,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -24959,7 +24959,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -24985,7 +24985,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -25035,7 +25035,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -25085,7 +25085,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -25111,7 +25111,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -25161,7 +25161,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -25187,7 +25187,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -25237,7 +25237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -25263,7 +25263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -25313,7 +25313,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -25339,7 +25339,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -25584,7 +25584,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25643,7 +25643,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25693,7 +25693,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -25728,7 +25728,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -25874,7 +25874,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25933,7 +25933,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25983,7 +25983,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -26018,7 +26018,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -26164,7 +26164,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -26223,7 +26223,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -26273,7 +26273,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -26308,7 +26308,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -26440,7 +26440,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -26562,7 +26562,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -26597,7 +26597,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -26743,7 +26743,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -26865,7 +26865,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -26900,7 +26900,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -27046,7 +27046,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -27168,7 +27168,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -27203,7 +27203,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -27383,7 +27383,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -27442,7 +27442,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -27492,7 +27492,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -27527,7 +27527,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -27673,7 +27673,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -27732,7 +27732,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -27782,7 +27782,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -27817,7 +27817,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -27963,7 +27963,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -28022,7 +28022,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -28072,7 +28072,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -28107,7 +28107,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -28239,7 +28239,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -28361,7 +28361,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -28396,7 +28396,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -28542,7 +28542,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -28664,7 +28664,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -28699,7 +28699,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -28845,7 +28845,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -28967,7 +28967,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -29002,7 +29002,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -29182,7 +29182,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -29241,7 +29241,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -29291,7 +29291,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -29326,7 +29326,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -29472,7 +29472,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -29531,7 +29531,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -29581,7 +29581,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -29616,7 +29616,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -29762,7 +29762,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -29821,7 +29821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -29871,7 +29871,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -29906,7 +29906,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -30062,7 +30062,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -30088,7 +30088,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -30123,7 +30123,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -30269,7 +30269,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -30295,7 +30295,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -30330,7 +30330,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -30476,7 +30476,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -30502,7 +30502,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -30537,7 +30537,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -30705,7 +30705,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30755,7 +30755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30805,7 +30805,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30855,7 +30855,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30905,7 +30905,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30955,7 +30955,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31005,7 +31005,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31055,7 +31055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31105,7 +31105,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31131,7 +31131,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31157,7 +31157,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -31303,7 +31303,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31353,7 +31353,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31403,7 +31403,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31453,7 +31453,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31503,7 +31503,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31553,7 +31553,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31603,7 +31603,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31653,7 +31653,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31703,7 +31703,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31729,7 +31729,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31755,7 +31755,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -31901,7 +31901,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31951,7 +31951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -32001,7 +32001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -32051,7 +32051,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -32101,7 +32101,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -32151,7 +32151,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -32201,7 +32201,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -32251,7 +32251,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -32301,7 +32301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -32327,7 +32327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -32353,7 +32353,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -32571,7 +32571,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -32597,7 +32597,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -32697,7 +32697,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -32723,7 +32723,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -32823,7 +32823,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -32849,7 +32849,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -32991,7 +32991,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -33017,7 +33017,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -33043,7 +33043,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -33069,7 +33069,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -33095,7 +33095,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -33121,7 +33121,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -33147,7 +33147,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33173,7 +33173,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33199,7 +33199,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33225,7 +33225,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33251,7 +33251,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33277,7 +33277,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33303,7 +33303,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33329,7 +33329,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33355,7 +33355,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33381,7 +33381,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33407,7 +33407,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33433,7 +33433,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -33459,7 +33459,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33485,7 +33485,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33511,7 +33511,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33537,7 +33537,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33563,7 +33563,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33589,7 +33589,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33615,7 +33615,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33641,7 +33641,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33667,7 +33667,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33693,7 +33693,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33719,7 +33719,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33745,7 +33745,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33771,7 +33771,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33797,7 +33797,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33823,7 +33823,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33849,7 +33849,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33875,7 +33875,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33901,7 +33901,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33927,7 +33927,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33953,7 +33953,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -33979,7 +33979,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34005,7 +34005,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34031,7 +34031,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34057,7 +34057,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34083,7 +34083,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34109,7 +34109,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34135,7 +34135,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34161,7 +34161,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34187,7 +34187,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34213,7 +34213,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34239,7 +34239,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34265,7 +34265,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34291,7 +34291,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34317,7 +34317,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34343,7 +34343,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34369,7 +34369,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34395,7 +34395,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34421,7 +34421,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34447,7 +34447,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34473,7 +34473,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34499,7 +34499,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34525,7 +34525,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34551,7 +34551,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34577,7 +34577,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34603,7 +34603,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34629,7 +34629,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34655,7 +34655,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34681,7 +34681,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34707,7 +34707,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34733,7 +34733,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34759,7 +34759,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34785,7 +34785,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34811,7 +34811,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34837,7 +34837,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34863,7 +34863,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34889,7 +34889,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34915,7 +34915,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34941,7 +34941,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34967,7 +34967,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -34993,7 +34993,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35019,7 +35019,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35045,7 +35045,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35071,7 +35071,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35097,7 +35097,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35123,7 +35123,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35149,7 +35149,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35175,7 +35175,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35201,7 +35201,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35227,7 +35227,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35253,7 +35253,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35279,7 +35279,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35305,7 +35305,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -35331,7 +35331,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35357,7 +35357,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35383,7 +35383,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35409,7 +35409,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35435,7 +35435,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35461,7 +35461,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35487,7 +35487,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35513,7 +35513,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35539,7 +35539,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35565,7 +35565,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35591,7 +35591,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35617,7 +35617,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -35643,7 +35643,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -35669,7 +35669,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -35695,7 +35695,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -35721,7 +35721,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -35747,7 +35747,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -35773,7 +35773,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -35799,7 +35799,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 75.0, "wellLocation": { "offset": { @@ -35825,7 +35825,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 75.0, "wellLocation": { "offset": { @@ -35851,7 +35851,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 120.0, "wellLocation": { "offset": { @@ -35877,7 +35877,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 120.0, "wellLocation": { "offset": { @@ -35953,7 +35953,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 12.0, "wellLocation": { "offset": { @@ -35979,7 +35979,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 12.0, "wellLocation": { "offset": { @@ -36005,7 +36005,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 15.0, "wellLocation": { "offset": { @@ -36031,7 +36031,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 15.0, "wellLocation": { "offset": { @@ -36057,7 +36057,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 32.0, "wellLocation": { "offset": { @@ -36083,7 +36083,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 32.0, "wellLocation": { "offset": { @@ -36109,7 +36109,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 32.0, "wellLocation": { "offset": { @@ -36135,7 +36135,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 32.0, "wellLocation": { "offset": { @@ -36161,7 +36161,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 32.0, "wellLocation": { "offset": { @@ -36187,7 +36187,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 32.0, "wellLocation": { "offset": { @@ -36213,7 +36213,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 30.0, "wellLocation": { "offset": { @@ -36239,7 +36239,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 30.0, "wellLocation": { "offset": { @@ -36265,7 +36265,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 30.0, "wellLocation": { "offset": { @@ -36291,7 +36291,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 30.0, "wellLocation": { "offset": { @@ -36317,7 +36317,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 30.0, "wellLocation": { "offset": { @@ -36343,7 +36343,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 30.0, "wellLocation": { "offset": { @@ -36515,7 +36515,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 101.0, "wellLocation": { "offset": { @@ -36541,7 +36541,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 101.0, "wellLocation": { "offset": { @@ -36641,7 +36641,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 101.0, "wellLocation": { "offset": { @@ -36667,7 +36667,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 101.0, "wellLocation": { "offset": { @@ -36767,7 +36767,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 101.0, "wellLocation": { "offset": { @@ -36793,7 +36793,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 101.0, "wellLocation": { "offset": { @@ -36886,7 +36886,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -36912,7 +36912,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -36938,7 +36938,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -36964,7 +36964,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -36990,7 +36990,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -37016,7 +37016,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -37066,7 +37066,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -37116,7 +37116,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -37142,7 +37142,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -37192,7 +37192,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -37218,7 +37218,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -37268,7 +37268,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -37294,7 +37294,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -37344,7 +37344,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -37370,7 +37370,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -37516,7 +37516,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -37542,7 +37542,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -37568,7 +37568,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -37594,7 +37594,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -37620,7 +37620,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -37646,7 +37646,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -37696,7 +37696,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -37746,7 +37746,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -37772,7 +37772,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -37822,7 +37822,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -37848,7 +37848,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -37898,7 +37898,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -37924,7 +37924,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -37974,7 +37974,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -38000,7 +38000,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -38146,7 +38146,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -38172,7 +38172,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -38198,7 +38198,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -38224,7 +38224,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -38250,7 +38250,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -38276,7 +38276,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -38326,7 +38326,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -38376,7 +38376,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -38402,7 +38402,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -38452,7 +38452,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -38478,7 +38478,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -38528,7 +38528,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -38554,7 +38554,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -38604,7 +38604,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -38630,7 +38630,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -38912,7 +38912,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -38938,7 +38938,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -38988,7 +38988,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39014,7 +39014,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39073,7 +39073,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -39097,7 +39097,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -39197,7 +39197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39223,7 +39223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39273,7 +39273,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39299,7 +39299,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39358,7 +39358,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -39382,7 +39382,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -39482,7 +39482,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39508,7 +39508,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39558,7 +39558,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39584,7 +39584,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39643,7 +39643,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -39667,7 +39667,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -39799,7 +39799,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39825,7 +39825,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39901,7 +39901,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -39927,7 +39927,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -40003,7 +40003,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -40029,7 +40029,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -40211,7 +40211,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -40270,7 +40270,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -40320,7 +40320,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -40355,7 +40355,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -40379,7 +40379,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -40479,7 +40479,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -40538,7 +40538,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -40588,7 +40588,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -40623,7 +40623,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -40647,7 +40647,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -40747,7 +40747,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -40806,7 +40806,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -40856,7 +40856,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -40891,7 +40891,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -40915,7 +40915,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -41037,7 +41037,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -41063,7 +41063,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -41139,7 +41139,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -41165,7 +41165,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -41241,7 +41241,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -41267,7 +41267,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -41449,7 +41449,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -41508,7 +41508,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -41558,7 +41558,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -41593,7 +41593,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -41617,7 +41617,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -41717,7 +41717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -41776,7 +41776,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -41826,7 +41826,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -41861,7 +41861,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -41885,7 +41885,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -41985,7 +41985,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -42044,7 +42044,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -42094,7 +42094,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -42129,7 +42129,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -42153,7 +42153,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -42275,7 +42275,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -42301,7 +42301,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -42377,7 +42377,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -42403,7 +42403,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -42479,7 +42479,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -42505,7 +42505,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -42687,7 +42687,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -42746,7 +42746,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -42796,7 +42796,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -42831,7 +42831,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -42855,7 +42855,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -42955,7 +42955,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -43014,7 +43014,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -43064,7 +43064,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -43099,7 +43099,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -43123,7 +43123,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -43223,7 +43223,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -43282,7 +43282,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -43332,7 +43332,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -43367,7 +43367,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -43391,7 +43391,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -43513,7 +43513,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -43539,7 +43539,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -43615,7 +43615,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -43641,7 +43641,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -43717,7 +43717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -43743,7 +43743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -43871,7 +43871,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -43897,7 +43897,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -43997,7 +43997,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -44023,7 +44023,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -44123,7 +44123,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -44149,7 +44149,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -44297,7 +44297,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -44356,7 +44356,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -44406,7 +44406,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -44441,7 +44441,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -44465,7 +44465,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -44565,7 +44565,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -44624,7 +44624,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -44674,7 +44674,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -44709,7 +44709,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -44733,7 +44733,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -44833,7 +44833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -44892,7 +44892,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -44942,7 +44942,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -44977,7 +44977,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -45001,7 +45001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -45111,7 +45111,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 50.0, "wellLocation": { "offset": { @@ -45137,7 +45137,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -45172,7 +45172,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 57.0, "wellLocation": { "offset": { "x": 0.0, @@ -45318,7 +45318,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 50.0, "wellLocation": { "offset": { @@ -45344,7 +45344,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -45379,7 +45379,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 57.0, "wellLocation": { "offset": { "x": 0.0, @@ -45525,7 +45525,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 50.0, "wellLocation": { "offset": { @@ -45551,7 +45551,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -45586,7 +45586,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 57.0, "wellLocation": { "offset": { "x": 0.0, @@ -45748,7 +45748,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 23.0, "wellLocation": { "offset": { @@ -45774,7 +45774,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 23.0, "wellLocation": { "offset": { @@ -45850,7 +45850,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 23.0, "wellLocation": { "offset": { @@ -45876,7 +45876,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 23.0, "wellLocation": { "offset": { @@ -45952,7 +45952,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 23.0, "wellLocation": { "offset": { @@ -45978,7 +45978,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 23.0, "wellLocation": { "offset": { @@ -46196,7 +46196,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 22.0, "wellLocation": { "offset": { @@ -46222,7 +46222,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 22.0, "wellLocation": { "offset": { @@ -46322,7 +46322,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 22.0, "wellLocation": { "offset": { @@ -46348,7 +46348,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 22.0, "wellLocation": { "offset": { @@ -46448,7 +46448,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 22.0, "wellLocation": { "offset": { @@ -46474,7 +46474,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 22.0, "wellLocation": { "offset": { @@ -46560,7 +46560,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 4.0, "wellLocation": { "offset": { @@ -46586,7 +46586,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 4.0, "wellLocation": { "offset": { @@ -46636,7 +46636,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -46662,7 +46662,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -46738,7 +46738,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 4.0, "wellLocation": { "offset": { @@ -46764,7 +46764,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 4.0, "wellLocation": { "offset": { @@ -46814,7 +46814,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -46840,7 +46840,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -46916,7 +46916,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 4.0, "wellLocation": { "offset": { @@ -46942,7 +46942,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 4.0, "wellLocation": { "offset": { @@ -46992,7 +46992,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -47018,7 +47018,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -47134,7 +47134,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 5.0, "wellLocation": { "offset": { @@ -47160,7 +47160,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 5.0, "wellLocation": { "offset": { @@ -47236,7 +47236,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 5.0, "wellLocation": { "offset": { @@ -47262,7 +47262,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 5.0, "wellLocation": { "offset": { @@ -47338,7 +47338,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 5.0, "wellLocation": { "offset": { @@ -47364,7 +47364,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 5.0, "wellLocation": { "offset": { @@ -47450,7 +47450,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -47476,7 +47476,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -47526,7 +47526,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 45.0, "wellLocation": { "offset": { @@ -47552,7 +47552,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 45.0, "wellLocation": { "offset": { @@ -47628,7 +47628,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -47654,7 +47654,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -47704,7 +47704,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 45.0, "wellLocation": { "offset": { @@ -47730,7 +47730,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 45.0, "wellLocation": { "offset": { @@ -47806,7 +47806,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -47832,7 +47832,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -47882,7 +47882,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 45.0, "wellLocation": { "offset": { @@ -47908,7 +47908,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 45.0, "wellLocation": { "offset": { @@ -48084,7 +48084,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 46.0, "wellLocation": { "offset": { @@ -48110,7 +48110,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 46.0, "wellLocation": { "offset": { @@ -48210,7 +48210,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 46.0, "wellLocation": { "offset": { @@ -48236,7 +48236,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 46.0, "wellLocation": { "offset": { @@ -48336,7 +48336,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 46.0, "wellLocation": { "offset": { @@ -48362,7 +48362,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 46.0, "wellLocation": { "offset": { @@ -48448,7 +48448,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -48474,7 +48474,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -48500,7 +48500,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -48526,7 +48526,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -48576,7 +48576,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -48626,7 +48626,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -48652,7 +48652,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -48702,7 +48702,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -48728,7 +48728,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -48778,7 +48778,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -48804,7 +48804,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -48854,7 +48854,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -48880,7 +48880,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -49026,7 +49026,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -49052,7 +49052,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -49078,7 +49078,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -49104,7 +49104,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -49154,7 +49154,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49204,7 +49204,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49230,7 +49230,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49280,7 +49280,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -49306,7 +49306,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49356,7 +49356,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49382,7 +49382,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49432,7 +49432,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -49458,7 +49458,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -49604,7 +49604,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -49630,7 +49630,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -49656,7 +49656,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -49682,7 +49682,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -49732,7 +49732,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49782,7 +49782,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49808,7 +49808,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49858,7 +49858,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -49884,7 +49884,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49934,7 +49934,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -49960,7 +49960,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -50010,7 +50010,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -50036,7 +50036,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -50281,7 +50281,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -50340,7 +50340,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -50390,7 +50390,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -50425,7 +50425,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -50571,7 +50571,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -50630,7 +50630,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -50680,7 +50680,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -50715,7 +50715,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -50861,7 +50861,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -50920,7 +50920,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -50970,7 +50970,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -51005,7 +51005,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -51137,7 +51137,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -51259,7 +51259,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -51294,7 +51294,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -51440,7 +51440,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -51562,7 +51562,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -51597,7 +51597,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -51743,7 +51743,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -51865,7 +51865,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -51900,7 +51900,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -52080,7 +52080,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -52139,7 +52139,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -52189,7 +52189,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -52224,7 +52224,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -52370,7 +52370,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -52429,7 +52429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -52479,7 +52479,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -52514,7 +52514,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -52660,7 +52660,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -52719,7 +52719,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -52769,7 +52769,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -52804,7 +52804,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -52936,7 +52936,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -53058,7 +53058,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -53093,7 +53093,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -53239,7 +53239,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -53361,7 +53361,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -53396,7 +53396,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -53542,7 +53542,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -53664,7 +53664,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -53699,7 +53699,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -53879,7 +53879,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -53938,7 +53938,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -53988,7 +53988,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -54023,7 +54023,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -54169,7 +54169,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -54228,7 +54228,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -54278,7 +54278,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -54313,7 +54313,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -54459,7 +54459,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -54518,7 +54518,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -54568,7 +54568,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -54603,7 +54603,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -54759,7 +54759,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54785,7 +54785,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54820,7 +54820,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -54966,7 +54966,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54992,7 +54992,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -55027,7 +55027,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -55173,7 +55173,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -55199,7 +55199,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -55234,7 +55234,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -55402,7 +55402,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -55452,7 +55452,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -55502,7 +55502,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -55552,7 +55552,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -55602,7 +55602,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -55652,7 +55652,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -55702,7 +55702,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -55752,7 +55752,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -55802,7 +55802,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -55828,7 +55828,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -55854,7 +55854,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -56000,7 +56000,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56050,7 +56050,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56100,7 +56100,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56150,7 +56150,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56200,7 +56200,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56250,7 +56250,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56300,7 +56300,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56350,7 +56350,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56400,7 +56400,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56426,7 +56426,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56452,7 +56452,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -56598,7 +56598,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56648,7 +56648,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56698,7 +56698,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56748,7 +56748,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56798,7 +56798,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56848,7 +56848,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56898,7 +56898,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56948,7 +56948,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -56998,7 +56998,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -57024,7 +57024,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -57050,7 +57050,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -57268,7 +57268,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -57294,7 +57294,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -57394,7 +57394,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -57420,7 +57420,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -57520,7 +57520,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -57546,7 +57546,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -57688,7 +57688,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -57714,7 +57714,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -57740,7 +57740,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -57766,7 +57766,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -57792,7 +57792,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -57818,7 +57818,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -57844,7 +57844,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -57870,7 +57870,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -57896,7 +57896,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -57922,7 +57922,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -57948,7 +57948,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -57974,7 +57974,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -58000,7 +58000,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -58026,7 +58026,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -58052,7 +58052,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -58078,7 +58078,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -58104,7 +58104,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -58130,7 +58130,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -58156,7 +58156,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58182,7 +58182,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58208,7 +58208,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58234,7 +58234,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58260,7 +58260,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58286,7 +58286,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58312,7 +58312,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58338,7 +58338,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58364,7 +58364,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58390,7 +58390,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58416,7 +58416,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58442,7 +58442,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58468,7 +58468,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58494,7 +58494,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58520,7 +58520,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58546,7 +58546,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58572,7 +58572,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58598,7 +58598,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58624,7 +58624,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58650,7 +58650,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58676,7 +58676,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58702,7 +58702,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58728,7 +58728,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58754,7 +58754,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58780,7 +58780,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58806,7 +58806,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58832,7 +58832,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58858,7 +58858,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58884,7 +58884,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58910,7 +58910,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58936,7 +58936,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58962,7 +58962,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -58988,7 +58988,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59014,7 +59014,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59040,7 +59040,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59066,7 +59066,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59092,7 +59092,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59118,7 +59118,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59144,7 +59144,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59170,7 +59170,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59196,7 +59196,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59222,7 +59222,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59248,7 +59248,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59274,7 +59274,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59300,7 +59300,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59326,7 +59326,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59352,7 +59352,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59378,7 +59378,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59404,7 +59404,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59430,7 +59430,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59456,7 +59456,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59482,7 +59482,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59508,7 +59508,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59534,7 +59534,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59560,7 +59560,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59586,7 +59586,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59612,7 +59612,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59638,7 +59638,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59664,7 +59664,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59690,7 +59690,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59716,7 +59716,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59742,7 +59742,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59768,7 +59768,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59794,7 +59794,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59820,7 +59820,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59846,7 +59846,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59872,7 +59872,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59898,7 +59898,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59924,7 +59924,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59950,7 +59950,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -59976,7 +59976,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -60002,7 +60002,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -60028,7 +60028,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60054,7 +60054,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60080,7 +60080,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60106,7 +60106,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60132,7 +60132,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60158,7 +60158,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60184,7 +60184,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60210,7 +60210,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60236,7 +60236,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60262,7 +60262,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60288,7 +60288,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60314,7 +60314,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -60340,7 +60340,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -60366,7 +60366,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -60392,7 +60392,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -60418,7 +60418,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -60444,7 +60444,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -60470,7 +60470,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -60496,7 +60496,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 75.0, "wellLocation": { "offset": { @@ -60522,7 +60522,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 75.0, "wellLocation": { "offset": { @@ -60548,7 +60548,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 120.0, "wellLocation": { "offset": { @@ -60574,7 +60574,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 120.0, "wellLocation": { "offset": { @@ -60650,7 +60650,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 12.0, "wellLocation": { "offset": { @@ -60676,7 +60676,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 12.0, "wellLocation": { "offset": { @@ -60702,7 +60702,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 15.0, "wellLocation": { "offset": { @@ -60728,7 +60728,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 15.0, "wellLocation": { "offset": { @@ -60754,7 +60754,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 32.0, "wellLocation": { "offset": { @@ -60780,7 +60780,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 32.0, "wellLocation": { "offset": { @@ -60806,7 +60806,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 32.0, "wellLocation": { "offset": { @@ -60832,7 +60832,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 32.0, "wellLocation": { "offset": { @@ -60858,7 +60858,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 32.0, "wellLocation": { "offset": { @@ -60884,7 +60884,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 32.0, "wellLocation": { "offset": { @@ -60910,7 +60910,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 30.0, "wellLocation": { "offset": { @@ -60936,7 +60936,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 30.0, "wellLocation": { "offset": { @@ -60962,7 +60962,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 30.0, "wellLocation": { "offset": { @@ -60988,7 +60988,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 30.0, "wellLocation": { "offset": { @@ -61014,7 +61014,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 30.0, "wellLocation": { "offset": { @@ -61040,7 +61040,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 30.0, "wellLocation": { "offset": { @@ -61212,7 +61212,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 101.0, "wellLocation": { "offset": { @@ -61238,7 +61238,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 101.0, "wellLocation": { "offset": { @@ -61338,7 +61338,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 101.0, "wellLocation": { "offset": { @@ -61364,7 +61364,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 101.0, "wellLocation": { "offset": { @@ -61464,7 +61464,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 101.0, "wellLocation": { "offset": { @@ -61490,7 +61490,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 101.0, "wellLocation": { "offset": { @@ -61583,7 +61583,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -61609,7 +61609,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -61635,7 +61635,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -61661,7 +61661,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -61687,7 +61687,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -61713,7 +61713,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -61763,7 +61763,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -61813,7 +61813,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -61839,7 +61839,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -61889,7 +61889,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -61915,7 +61915,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -61965,7 +61965,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -61991,7 +61991,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -62041,7 +62041,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -62067,7 +62067,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -62213,7 +62213,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -62239,7 +62239,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -62265,7 +62265,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -62291,7 +62291,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -62317,7 +62317,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -62343,7 +62343,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -62393,7 +62393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -62443,7 +62443,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -62469,7 +62469,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -62519,7 +62519,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -62545,7 +62545,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -62595,7 +62595,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -62621,7 +62621,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -62671,7 +62671,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -62697,7 +62697,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -62843,7 +62843,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -62869,7 +62869,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -62895,7 +62895,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -62921,7 +62921,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -62947,7 +62947,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -62973,7 +62973,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 125.0, "wellLocation": { "offset": { @@ -63023,7 +63023,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -63073,7 +63073,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -63099,7 +63099,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -63149,7 +63149,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -63175,7 +63175,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -63225,7 +63225,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -63251,7 +63251,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 80.0, "wellLocation": { "offset": { @@ -63301,7 +63301,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 100.0, "wellLocation": { "offset": { @@ -63327,7 +63327,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -63609,7 +63609,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -63635,7 +63635,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -63685,7 +63685,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -63711,7 +63711,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -63770,7 +63770,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -63794,7 +63794,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -63894,7 +63894,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -63920,7 +63920,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -63970,7 +63970,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -63996,7 +63996,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64055,7 +64055,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -64079,7 +64079,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -64179,7 +64179,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64205,7 +64205,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64255,7 +64255,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64281,7 +64281,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64340,7 +64340,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -64364,7 +64364,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -64496,7 +64496,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64522,7 +64522,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64598,7 +64598,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64624,7 +64624,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64700,7 +64700,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64726,7 +64726,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -64908,7 +64908,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -64967,7 +64967,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -65017,7 +65017,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -65052,7 +65052,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -65076,7 +65076,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -65176,7 +65176,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -65235,7 +65235,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -65285,7 +65285,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -65320,7 +65320,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -65344,7 +65344,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -65444,7 +65444,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -65503,7 +65503,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -65553,7 +65553,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -65588,7 +65588,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -65612,7 +65612,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -65734,7 +65734,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -65760,7 +65760,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -65836,7 +65836,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -65862,7 +65862,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -65938,7 +65938,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -65964,7 +65964,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -66146,7 +66146,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -66205,7 +66205,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -66255,7 +66255,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -66290,7 +66290,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -66314,7 +66314,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -66414,7 +66414,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -66473,7 +66473,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -66523,7 +66523,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -66558,7 +66558,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -66582,7 +66582,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -66682,7 +66682,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -66741,7 +66741,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -66791,7 +66791,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -66826,7 +66826,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -66850,7 +66850,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -66972,7 +66972,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -66998,7 +66998,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -67074,7 +67074,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -67100,7 +67100,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -67176,7 +67176,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -67202,7 +67202,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -67384,7 +67384,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -67443,7 +67443,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -67493,7 +67493,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -67528,7 +67528,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -67552,7 +67552,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -67652,7 +67652,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -67711,7 +67711,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -67761,7 +67761,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -67796,7 +67796,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -67820,7 +67820,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -67920,7 +67920,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -67979,7 +67979,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -68029,7 +68029,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68064,7 +68064,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -68088,7 +68088,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -68210,7 +68210,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68236,7 +68236,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68312,7 +68312,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68338,7 +68338,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68414,7 +68414,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68440,7 +68440,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68568,7 +68568,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68594,7 +68594,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68694,7 +68694,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68720,7 +68720,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68820,7 +68820,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68846,7 +68846,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -68994,7 +68994,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -69053,7 +69053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -69103,7 +69103,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -69138,7 +69138,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -69162,7 +69162,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -69262,7 +69262,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -69321,7 +69321,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -69371,7 +69371,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -69406,7 +69406,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -69430,7 +69430,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -69530,7 +69530,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -69589,7 +69589,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -69639,7 +69639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -69674,7 +69674,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -69698,7 +69698,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -69808,7 +69808,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 50.0, "wellLocation": { "offset": { @@ -69834,7 +69834,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -69869,7 +69869,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 57.0, "wellLocation": { "offset": { "x": 0.0, @@ -70015,7 +70015,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 50.0, "wellLocation": { "offset": { @@ -70041,7 +70041,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -70076,7 +70076,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 57.0, "wellLocation": { "offset": { "x": 0.0, @@ -70222,7 +70222,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 50.0, "wellLocation": { "offset": { @@ -70248,7 +70248,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 50.0, "wellLocation": { "offset": { @@ -70283,7 +70283,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 57.0, "wellLocation": { "offset": { "x": 0.0, @@ -70445,7 +70445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 23.0, "wellLocation": { "offset": { @@ -70471,7 +70471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 23.0, "wellLocation": { "offset": { @@ -70547,7 +70547,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 23.0, "wellLocation": { "offset": { @@ -70573,7 +70573,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 23.0, "wellLocation": { "offset": { @@ -70649,7 +70649,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 23.0, "wellLocation": { "offset": { @@ -70675,7 +70675,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 23.0, "wellLocation": { "offset": { @@ -70893,7 +70893,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 22.0, "wellLocation": { "offset": { @@ -70919,7 +70919,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 22.0, "wellLocation": { "offset": { @@ -71019,7 +71019,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 22.0, "wellLocation": { "offset": { @@ -71045,7 +71045,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 22.0, "wellLocation": { "offset": { @@ -71145,7 +71145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 22.0, "wellLocation": { "offset": { @@ -71171,7 +71171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 22.0, "wellLocation": { "offset": { @@ -71257,7 +71257,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 4.0, "wellLocation": { "offset": { @@ -71283,7 +71283,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 4.0, "wellLocation": { "offset": { @@ -71333,7 +71333,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -71359,7 +71359,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -71435,7 +71435,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 4.0, "wellLocation": { "offset": { @@ -71461,7 +71461,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 4.0, "wellLocation": { "offset": { @@ -71511,7 +71511,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -71537,7 +71537,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -71613,7 +71613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 4.0, "wellLocation": { "offset": { @@ -71639,7 +71639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 4.0, "wellLocation": { "offset": { @@ -71689,7 +71689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -71715,7 +71715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -71831,7 +71831,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 5.0, "wellLocation": { "offset": { @@ -71857,7 +71857,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 5.0, "wellLocation": { "offset": { @@ -71933,7 +71933,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 5.0, "wellLocation": { "offset": { @@ -71959,7 +71959,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 5.0, "wellLocation": { "offset": { @@ -72035,7 +72035,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 5.0, "wellLocation": { "offset": { @@ -72061,7 +72061,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 5.0, "wellLocation": { "offset": { @@ -72147,7 +72147,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -72173,7 +72173,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -72223,7 +72223,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 45.0, "wellLocation": { "offset": { @@ -72249,7 +72249,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 45.0, "wellLocation": { "offset": { @@ -72325,7 +72325,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -72351,7 +72351,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -72401,7 +72401,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 45.0, "wellLocation": { "offset": { @@ -72427,7 +72427,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 45.0, "wellLocation": { "offset": { @@ -72503,7 +72503,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -72529,7 +72529,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -72579,7 +72579,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 45.0, "wellLocation": { "offset": { @@ -72605,7 +72605,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 45.0, "wellLocation": { "offset": { @@ -72781,7 +72781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 46.0, "wellLocation": { "offset": { @@ -72807,7 +72807,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 46.0, "wellLocation": { "offset": { @@ -72907,7 +72907,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 46.0, "wellLocation": { "offset": { @@ -72933,7 +72933,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 46.0, "wellLocation": { "offset": { @@ -73033,7 +73033,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 46.0, "wellLocation": { "offset": { @@ -73059,7 +73059,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 46.0, "wellLocation": { "offset": { @@ -73145,7 +73145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -73171,7 +73171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -73197,7 +73197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -73223,7 +73223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -73273,7 +73273,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -73323,7 +73323,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -73349,7 +73349,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -73399,7 +73399,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -73425,7 +73425,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -73475,7 +73475,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -73501,7 +73501,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -73551,7 +73551,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -73577,7 +73577,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -73723,7 +73723,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -73749,7 +73749,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -73775,7 +73775,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -73801,7 +73801,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -73851,7 +73851,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -73901,7 +73901,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -73927,7 +73927,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -73977,7 +73977,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -74003,7 +74003,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74053,7 +74053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74079,7 +74079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74129,7 +74129,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -74155,7 +74155,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -74301,7 +74301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -74327,7 +74327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.5, "wellLocation": { "offset": { @@ -74353,7 +74353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -74379,7 +74379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 40.5, "wellLocation": { "offset": { @@ -74429,7 +74429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74479,7 +74479,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74505,7 +74505,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74555,7 +74555,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -74581,7 +74581,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74631,7 +74631,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74657,7 +74657,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74707,7 +74707,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -74733,7 +74733,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -74978,7 +74978,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -75037,7 +75037,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -75087,7 +75087,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -75122,7 +75122,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -75268,7 +75268,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -75327,7 +75327,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -75377,7 +75377,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -75412,7 +75412,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -75558,7 +75558,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -75617,7 +75617,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -75667,7 +75667,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -75702,7 +75702,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -75834,7 +75834,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -75956,7 +75956,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -75991,7 +75991,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -76137,7 +76137,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -76259,7 +76259,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -76294,7 +76294,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -76440,7 +76440,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -76562,7 +76562,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -76597,7 +76597,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -76777,7 +76777,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -76836,7 +76836,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -76886,7 +76886,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -76921,7 +76921,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -77067,7 +77067,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -77126,7 +77126,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -77176,7 +77176,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -77211,7 +77211,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -77357,7 +77357,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -77416,7 +77416,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -77466,7 +77466,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -77501,7 +77501,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -77633,7 +77633,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -77755,7 +77755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -77790,7 +77790,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -77936,7 +77936,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -78058,7 +78058,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -78093,7 +78093,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -78239,7 +78239,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -78361,7 +78361,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -78396,7 +78396,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -78576,7 +78576,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -78635,7 +78635,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -78685,7 +78685,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -78720,7 +78720,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -78866,7 +78866,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -78925,7 +78925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -78975,7 +78975,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -79010,7 +79010,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -79156,7 +79156,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -79215,7 +79215,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -79265,7 +79265,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -79300,7 +79300,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -79456,7 +79456,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -79482,7 +79482,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -79517,7 +79517,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -79663,7 +79663,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -79689,7 +79689,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -79724,7 +79724,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -79870,7 +79870,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -79896,7 +79896,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -79931,7 +79931,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -80099,7 +80099,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80149,7 +80149,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80199,7 +80199,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80249,7 +80249,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80299,7 +80299,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80349,7 +80349,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80399,7 +80399,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80449,7 +80449,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80499,7 +80499,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80525,7 +80525,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80551,7 +80551,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -80697,7 +80697,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80747,7 +80747,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80797,7 +80797,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80847,7 +80847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80897,7 +80897,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80947,7 +80947,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -80997,7 +80997,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81047,7 +81047,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81097,7 +81097,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81123,7 +81123,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81149,7 +81149,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -81295,7 +81295,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81345,7 +81345,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81395,7 +81395,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81445,7 +81445,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81495,7 +81495,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81545,7 +81545,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81595,7 +81595,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81645,7 +81645,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81695,7 +81695,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81721,7 +81721,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -81747,7 +81747,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -81965,7 +81965,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -81991,7 +81991,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -82091,7 +82091,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -82117,7 +82117,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -82217,7 +82217,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -82243,7 +82243,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -82385,7 +82385,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -82411,7 +82411,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -82437,7 +82437,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -82463,7 +82463,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -82489,7 +82489,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -82515,7 +82515,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -82541,7 +82541,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82567,7 +82567,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82593,7 +82593,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82619,7 +82619,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82645,7 +82645,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82671,7 +82671,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82697,7 +82697,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82723,7 +82723,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82749,7 +82749,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82775,7 +82775,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82801,7 +82801,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82827,7 +82827,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 125.0, "wellLocation": { "offset": { @@ -82853,7 +82853,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -82879,7 +82879,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -82905,7 +82905,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -82931,7 +82931,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -82957,7 +82957,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -82983,7 +82983,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83009,7 +83009,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83035,7 +83035,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83061,7 +83061,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83087,7 +83087,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83113,7 +83113,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83139,7 +83139,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83165,7 +83165,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83191,7 +83191,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83217,7 +83217,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83243,7 +83243,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83269,7 +83269,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83295,7 +83295,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83321,7 +83321,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83347,7 +83347,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83373,7 +83373,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83399,7 +83399,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83425,7 +83425,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83451,7 +83451,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83477,7 +83477,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83503,7 +83503,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83529,7 +83529,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83555,7 +83555,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83581,7 +83581,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83607,7 +83607,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83633,7 +83633,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83659,7 +83659,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83685,7 +83685,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83711,7 +83711,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83737,7 +83737,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83763,7 +83763,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83789,7 +83789,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83815,7 +83815,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83841,7 +83841,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83867,7 +83867,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83893,7 +83893,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83919,7 +83919,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83945,7 +83945,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83971,7 +83971,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -83997,7 +83997,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84023,7 +84023,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84049,7 +84049,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84075,7 +84075,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84101,7 +84101,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84127,7 +84127,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84153,7 +84153,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84179,7 +84179,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84205,7 +84205,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84231,7 +84231,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84257,7 +84257,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84283,7 +84283,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84309,7 +84309,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84335,7 +84335,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84361,7 +84361,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84387,7 +84387,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84413,7 +84413,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84439,7 +84439,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84465,7 +84465,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84491,7 +84491,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84517,7 +84517,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84543,7 +84543,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84569,7 +84569,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84595,7 +84595,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84621,7 +84621,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84647,7 +84647,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84673,7 +84673,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84699,7 +84699,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -84725,7 +84725,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -84751,7 +84751,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -84777,7 +84777,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -84803,7 +84803,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -84829,7 +84829,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -84855,7 +84855,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -84881,7 +84881,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -84907,7 +84907,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -84933,7 +84933,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -84959,7 +84959,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -84985,7 +84985,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -85011,7 +85011,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -85037,7 +85037,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -85063,7 +85063,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -85089,7 +85089,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -85115,7 +85115,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -85141,7 +85141,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -85167,7 +85167,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 121.5, "wellLocation": { "offset": { @@ -85193,7 +85193,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 75.0, "wellLocation": { "offset": { @@ -85219,7 +85219,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 75.0, "wellLocation": { "offset": { @@ -85245,7 +85245,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 120.0, "wellLocation": { "offset": { @@ -85271,7 +85271,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 120.0, "wellLocation": { "offset": { @@ -85347,7 +85347,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 12.0, "wellLocation": { "offset": { @@ -85373,7 +85373,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 12.0, "wellLocation": { "offset": { @@ -85399,7 +85399,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 15.0, "wellLocation": { "offset": { @@ -85425,7 +85425,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 15.0, "wellLocation": { "offset": { @@ -85451,7 +85451,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 32.0, "wellLocation": { "offset": { @@ -85477,7 +85477,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 32.0, "wellLocation": { "offset": { @@ -85503,7 +85503,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 32.0, "wellLocation": { "offset": { @@ -85529,7 +85529,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 32.0, "wellLocation": { "offset": { @@ -85555,7 +85555,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 32.0, "wellLocation": { "offset": { @@ -85581,7 +85581,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 32.0, "wellLocation": { "offset": { @@ -85607,7 +85607,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 30.0, "wellLocation": { "offset": { @@ -85633,7 +85633,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 30.0, "wellLocation": { "offset": { @@ -85659,7 +85659,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 30.0, "wellLocation": { "offset": { @@ -85685,7 +85685,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 30.0, "wellLocation": { "offset": { @@ -85711,7 +85711,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 30.0, "wellLocation": { "offset": { @@ -85737,7 +85737,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 30.0, "wellLocation": { "offset": { @@ -85794,7 +85794,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4.py", + "name": "Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAEnrichmentv4.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4e17da0b57][Flex_P1000_96_Gripper_TC_TM_HS_AnalysisError_GripperCollisionWithTips].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[19c783e363][Flex_X_v8_P1000_96_HS_GRIP_TC_TM_GripperCollisionWithTips].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4e17da0b57][Flex_P1000_96_Gripper_TC_TM_HS_AnalysisError_GripperCollisionWithTips].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[19c783e363][Flex_X_v8_P1000_96_HS_GRIP_TC_TM_GripperCollisionWithTips].json index babe140d830..f309752b497 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4e17da0b57][Flex_P1000_96_Gripper_TC_TM_HS_AnalysisError_GripperCollisionWithTips].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[19c783e363][Flex_X_v8_P1000_96_HS_GRIP_TC_TM_GripperCollisionWithTips].json @@ -12269,7 +12269,7 @@ ], "files": [ { - "name": "Flex_P1000_96_Gripper_TC_TM_HS_AnalysisError_GripperCollisionWithTips.json", + "name": "Flex_X_v8_P1000_96_HS_GRIP_TC_TM_GripperCollisionWithTips.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3b1bfd0d2d][OT2_None_None_HS_2_16_AnalysisError_HeaterShakerConflictWithTrashBin2].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[19ffa9c839][OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin2].json similarity index 92% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3b1bfd0d2d][OT2_None_None_HS_2_16_AnalysisError_HeaterShakerConflictWithTrashBin2].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[19ffa9c839][OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin2].json index c27872bca47..f0d76705138 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3b1bfd0d2d][OT2_None_None_HS_2_16_AnalysisError_HeaterShakerConflictWithTrashBin2].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[19ffa9c839][OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin2].json @@ -478,7 +478,7 @@ "errorInfo": { "args": "('trash bin in slot 12 prevents heaterShakerModuleV1 from using slot 9.',)", "class": "DeckConflictError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_None_None_HS_2_16_AnalysisError_HeaterShakerConflictWithTrashBin2.py\", line 11, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 814, in load_module\n module_core = self._core.load_module(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 423, in load_module\n deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/deck_conflict.py\", line 203, in check\n wrapped_deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/motion_planning/deck_conflict.py\", line 210, in check\n raise DeckConflictError(\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin2.py\", line 11, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 814, in load_module\n module_core = self._core.load_module(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 423, in load_module\n deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/deck_conflict.py\", line 203, in check\n wrapped_deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/motion_planning/deck_conflict.py\", line 210, in check\n raise DeckConflictError(\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -488,7 +488,7 @@ ], "files": [ { - "name": "OT2_None_None_HS_2_16_AnalysisError_HeaterShakerConflictWithTrashBin2.py", + "name": "OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin2.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8df082e960][OT2_P300MLeft_MM_TM_2_4_Zymo].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1c19a2055c][OT2_S_v2_4_P300M_None_MM_TM_Zymo].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8df082e960][OT2_P300MLeft_MM_TM_2_4_Zymo].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1c19a2055c][OT2_S_v2_4_P300M_None_MM_TM_Zymo].json index e53c0ddba17..54039a6738b 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8df082e960][OT2_P300MLeft_MM_TM_2_4_Zymo].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1c19a2055c][OT2_S_v2_4_P300M_None_MM_TM_Zymo].json @@ -65086,7 +65086,7 @@ "errors": [], "files": [ { - "name": "OT2_P300MLeft_MM_TM_2_4_Zymo.py", + "name": "OT2_S_v2_4_P300M_None_MM_TM_Zymo.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1e5825a070][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1e5825a070][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum].json index 63a9a2b758a..20c34cf527c 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1e5825a070][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[1e5825a070][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 2, - "command_output": "Usage: python -m opentrons.cli analyze [OPTIONS] FILES...\nTry 'python -m opentrons.cli analyze --help' for help.\n\nError: Invalid value for 'FILES...': Path '/var/lib/ot/protocols/generated_protocols/Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum.py' does not exist.\n" + "detail": "ParameterDefinitionError [line 95]: Minimum is type 'str', but must be of parameter type 'int'", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterDefinitionError: Minimum is type 'str', but must be of parameter type 'int'", + "errorCode": "4000", + "errorInfo": { + "args": "(\"Minimum is type 'str', but must be of parameter type 'int'\",)", + "class": "ParameterDefinitionError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum.py\", line 95, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 56, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 73, in __init__\n validation.validate_options(default, minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 266, in validate_options\n _validate_min_and_max(minimum, maximum, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 213, in _validate_min_and_max\n raise ParameterDefinitionError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Description Too Long 2.18" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[abbaf71ba3][v2_18_None_None_NoRTPdisplay_name].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[24a6b167a7][OT2_X_v2_18_None_None_NoRTPdisplay_name].json similarity index 92% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[abbaf71ba3][v2_18_None_None_NoRTPdisplay_name].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[24a6b167a7][OT2_X_v2_18_None_None_NoRTPdisplay_name].json index a4725aee484..1d6692d3961 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[abbaf71ba3][v2_18_None_None_NoRTPdisplay_name].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[24a6b167a7][OT2_X_v2_18_None_None_NoRTPdisplay_name].json @@ -28,7 +28,7 @@ "errorInfo": { "args": "(\"ParameterContext.add_int() missing 1 required positional argument: 'display_name'\",)", "class": "TypeError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_None_None_NoRTPdisplay_name.py\", line 11, in add_parameters\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_X_v2_18_None_None_NoRTPdisplay_name.py\", line 11, in add_parameters\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -37,6 +37,10 @@ } ], "files": [ + { + "name": "OT2_X_v2_18_None_None_NoRTPdisplay_name.py", + "role": "main" + }, { "name": "cpx_4_tuberack_100ul.json", "role": "labware" @@ -56,10 +60,6 @@ { "name": "sample_labware.json", "role": "labware" - }, - { - "name": "v2_18_None_None_NoRTPdisplay_name.py", - "role": "main" } ], "labware": [], diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[27c2119f32][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[27c2119f32][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name].json deleted file mode 100644 index 595a81fcacd..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[27c2119f32][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name].json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "AttributeError [line 39]: 'dict' object has no attribute 'isidentifier'", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "AttributeError: 'dict' object has no attribute 'isidentifier'", - "errorCode": "4000", - "errorInfo": { - "args": "(\"'dict' object has no attribute 'isidentifier'\",)", - "class": "AttributeError", - "name": "isidentifier", - "obj": "{}", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name.py\", line 39, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 91, in add_float\n parameter = parameter_definition.create_float_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 202, in create_float_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 57, in __init__\n self._variable_name = validation.ensure_variable_name(variable_name)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 30, in ensure_variable_name\n if not variable_name.isidentifier():\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Description Too Long 2.18" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e99c0a71d5][Flex_P1000_96_Gripper_2_16_TriggerPrepareForMountMovement].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2eaf98de6a][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_TriggerPrepareForMountMovement].json similarity index 97% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e99c0a71d5][Flex_P1000_96_Gripper_2_16_TriggerPrepareForMountMovement].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2eaf98de6a][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_TriggerPrepareForMountMovement].json index bd42f6ff8a7..9069637c0bc 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e99c0a71d5][Flex_P1000_96_Gripper_2_16_TriggerPrepareForMountMovement].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2eaf98de6a][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_TriggerPrepareForMountMovement].json @@ -2,12 +2,14 @@ "commands": [ { "commandType": "home", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "loadModule", + "notes": [], "params": { "location": { "slotName": "B1" @@ -116,6 +118,7 @@ }, { "commandType": "loadModule", + "notes": [], "params": { "location": { "slotName": "A3" @@ -170,6 +173,7 @@ }, { "commandType": "loadModule", + "notes": [], "params": { "location": { "slotName": "D1" @@ -619,6 +623,7 @@ }, { "commandType": "loadModule", + "notes": [], "params": { "location": { "slotName": "C1" @@ -1070,12 +1075,14 @@ }, { "commandType": "thermocycler/openLid", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "heaterShaker/openLabwareLatch", + "notes": [], "params": {}, "result": { "pipetteRetracted": true @@ -1084,6 +1091,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "opentrons_96_well_aluminum_block", "location": {}, @@ -2240,6 +2248,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "opentrons_96_pcr_adapter", "location": {}, @@ -3396,6 +3405,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_2ml_deep", "location": { @@ -4662,6 +4672,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", "location": { @@ -5829,6 +5840,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "opentrons_flex_96_tiprack_adapter", "location": { @@ -5891,6 +5903,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "opentrons_flex_96_tiprack_1000ul", "location": {}, @@ -7040,6 +7053,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "opentrons_flex_96_tiprack_1000ul", "location": { @@ -8191,6 +8205,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "opentrons_flex_96_tiprack_1000ul", "location": { @@ -9342,6 +9357,7 @@ }, { "commandType": "loadPipette", + "notes": [], "params": { "mount": "left", "pipetteName": "p1000_96" @@ -9351,6 +9367,7 @@ }, { "commandType": "loadLiquid", + "notes": [], "params": { "volumeByWell": { "A1": 29000.0 @@ -9361,6 +9378,7 @@ }, { "commandType": "configureNozzleLayout", + "notes": [], "params": { "configurationParams": { "primaryNozzle": "A12", @@ -9372,6 +9390,7 @@ }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -9397,6 +9416,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -9422,6 +9442,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -9446,6 +9467,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -9471,9 +9493,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -9484,7 +9507,7 @@ }, "result": { "position": { - "x": 466.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -9493,12 +9516,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -9524,6 +9549,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -9549,6 +9575,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -9573,6 +9600,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -9598,9 +9626,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -9611,7 +9640,7 @@ }, "result": { "position": { - "x": 402.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -9620,12 +9649,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -9651,6 +9682,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -9676,6 +9708,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -9700,6 +9733,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -9725,9 +9759,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -9738,7 +9773,7 @@ }, "result": { "position": { - "x": 466.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -9747,12 +9782,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -9778,6 +9815,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -9803,6 +9841,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -9827,6 +9866,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -9852,9 +9892,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -9865,7 +9906,7 @@ }, "result": { "position": { - "x": 402.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -9874,12 +9915,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -9905,6 +9948,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -9930,6 +9974,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -9954,6 +9999,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -9979,9 +10025,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -9992,7 +10039,7 @@ }, "result": { "position": { - "x": 466.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -10001,12 +10048,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -10032,6 +10081,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10057,6 +10107,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -10081,6 +10132,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10106,9 +10158,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -10119,7 +10172,7 @@ }, "result": { "position": { - "x": 402.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -10128,12 +10181,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -10159,6 +10214,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10184,6 +10240,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -10208,6 +10265,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10233,9 +10291,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -10246,7 +10305,7 @@ }, "result": { "position": { - "x": 466.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -10255,12 +10314,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -10286,6 +10347,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10311,6 +10373,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -10335,6 +10398,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10360,9 +10424,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -10373,7 +10438,7 @@ }, "result": { "position": { - "x": 402.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -10382,12 +10447,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -10413,6 +10480,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10438,6 +10506,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -10462,6 +10531,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10487,9 +10557,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -10500,7 +10571,7 @@ }, "result": { "position": { - "x": 466.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -10509,12 +10580,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -10540,6 +10613,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10565,6 +10639,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -10589,6 +10664,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10614,9 +10690,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -10627,7 +10704,7 @@ }, "result": { "position": { - "x": 402.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -10636,12 +10713,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -10667,6 +10746,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10692,6 +10772,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -10716,6 +10797,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10741,9 +10823,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -10754,7 +10837,7 @@ }, "result": { "position": { - "x": 466.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -10763,12 +10846,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -10794,6 +10879,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10819,6 +10905,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -10843,6 +10930,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10868,9 +10956,10 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", - "alternateDropLocation": true, + "alternateDropLocation": false, "forceDirect": false, "ignoreTipConfiguration": true, "offset": { @@ -10881,7 +10970,7 @@ }, "result": { "position": { - "x": 402.25, + "x": 434.25, "y": 257.0, "z": 40.0 } @@ -10890,12 +10979,14 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "gripperWasteChute" @@ -10907,6 +10998,7 @@ }, { "commandType": "configureNozzleLayout", + "notes": [], "params": { "configurationParams": { "style": "ALL" @@ -10917,6 +11009,7 @@ }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -10942,6 +11035,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -10967,6 +11061,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -10991,6 +11086,7 @@ }, { "commandType": "moveToWell", + "notes": [], "params": { "forceDirect": false, "wellLocation": { @@ -11014,6 +11110,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 995.0, @@ -11039,6 +11136,7 @@ }, { "commandType": "moveToAddressableArea", + "notes": [], "params": { "addressableAreaName": "96ChannelWasteChute", "forceDirect": false, @@ -11060,6 +11158,7 @@ }, { "commandType": "blowOutInPlace", + "notes": [], "params": { "flowRate": 80.0 }, @@ -11068,6 +11167,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -11093,6 +11193,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -11117,6 +11218,7 @@ }, { "commandType": "moveToWell", + "notes": [], "params": { "forceDirect": false, "wellLocation": { @@ -11140,6 +11242,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 995.0, @@ -11165,6 +11268,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", "alternateDropLocation": false, @@ -11187,6 +11291,7 @@ }, { "commandType": "blowOutInPlace", + "notes": [], "params": { "flowRate": 80.0 }, @@ -11195,6 +11300,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 10.0, @@ -11220,6 +11326,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -11244,6 +11351,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 10.0, @@ -11269,6 +11377,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 15.0, @@ -11294,6 +11403,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "pushOut": 0.0, @@ -11320,6 +11430,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 15.0, @@ -11345,6 +11456,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "pushOut": 0.0, @@ -11371,6 +11483,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 15.0, @@ -11396,6 +11509,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "pushOut": 0.0, @@ -11422,6 +11536,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 15.0, @@ -11447,6 +11562,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "pushOut": 0.0, @@ -11473,6 +11589,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 15.0, @@ -11498,6 +11615,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 15.0, @@ -11523,6 +11641,7 @@ }, { "commandType": "dropTip", + "notes": [], "params": { "alternateDropLocation": false, "wellLocation": { @@ -11546,6 +11665,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "gripperWasteChute" @@ -11557,6 +11677,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -11566,6 +11687,7 @@ }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -11591,6 +11713,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -11616,6 +11739,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "pushOut": 0.0, @@ -11642,6 +11766,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -11667,6 +11792,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "pushOut": 0.0, @@ -11693,6 +11819,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -11718,6 +11845,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -11743,6 +11871,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 10.0, @@ -11768,6 +11897,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -11792,6 +11922,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 10.0, @@ -11817,6 +11948,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -11842,6 +11974,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 5.0, @@ -11867,6 +12000,7 @@ }, { "commandType": "touchTip", + "notes": [], "params": { "radius": 1.0, "speed": 60.0, @@ -11891,6 +12025,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashB3", "alternateDropLocation": false, @@ -11913,6 +12048,7 @@ }, { "commandType": "blowOutInPlace", + "notes": [], "params": { "flowRate": 80.0 }, @@ -11921,6 +12057,7 @@ }, { "commandType": "dropTip", + "notes": [], "params": { "alternateDropLocation": false, "wellLocation": { @@ -11944,6 +12081,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "gripperWasteChute" @@ -11955,6 +12093,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -11966,6 +12105,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -11977,6 +12117,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -11988,6 +12129,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -11999,6 +12141,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12010,6 +12153,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12021,6 +12165,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12032,6 +12177,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12043,6 +12189,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -12054,6 +12201,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12065,6 +12213,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12076,6 +12225,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12087,6 +12237,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -12098,6 +12249,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12109,6 +12261,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12120,6 +12273,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12129,6 +12283,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12140,6 +12295,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12149,6 +12305,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12160,6 +12317,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12169,6 +12327,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12180,6 +12339,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12189,6 +12349,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12200,6 +12361,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12209,6 +12371,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12218,6 +12381,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12227,6 +12391,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12236,6 +12401,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12247,6 +12413,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12258,6 +12425,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -12269,6 +12437,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12280,6 +12449,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12291,6 +12461,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12302,6 +12473,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -12313,6 +12485,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12324,6 +12497,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12335,6 +12509,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -12346,6 +12521,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12357,6 +12533,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12368,6 +12545,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12379,6 +12557,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -12390,6 +12569,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12401,6 +12581,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12412,6 +12593,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12421,6 +12603,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12432,6 +12615,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12441,6 +12625,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12452,6 +12637,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12461,6 +12647,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12472,6 +12659,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12481,6 +12669,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12492,6 +12681,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12501,6 +12691,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12510,6 +12701,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12519,6 +12711,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12528,6 +12721,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12539,6 +12733,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12550,6 +12745,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12561,6 +12757,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12572,6 +12769,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -12583,6 +12781,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12594,6 +12793,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12605,6 +12805,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -12616,6 +12817,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12627,6 +12829,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12638,6 +12841,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12649,6 +12853,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12660,6 +12865,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12671,6 +12877,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -12682,6 +12889,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12693,6 +12901,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -12704,6 +12913,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12715,6 +12925,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12724,6 +12935,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12735,6 +12947,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12744,6 +12957,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12755,6 +12969,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12764,6 +12979,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12775,6 +12991,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12784,6 +13001,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12795,6 +13013,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12804,6 +13023,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12813,6 +13033,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12822,6 +13043,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12831,6 +13053,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12842,6 +13065,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12851,6 +13075,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12862,6 +13087,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12871,6 +13097,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -12882,6 +13109,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12891,6 +13119,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -12902,6 +13131,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -12913,6 +13143,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12922,6 +13153,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12933,6 +13165,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12942,6 +13175,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -12953,6 +13187,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12962,6 +13197,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -12973,6 +13209,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -12982,6 +13219,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -12993,6 +13231,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13002,6 +13241,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -13013,6 +13253,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -13024,6 +13265,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13033,6 +13275,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13042,6 +13285,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13051,6 +13295,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13060,6 +13305,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13069,6 +13315,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13078,6 +13325,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13087,6 +13335,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13096,6 +13345,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13105,6 +13355,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13114,6 +13365,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13123,6 +13375,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13132,6 +13385,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -13143,6 +13397,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13152,6 +13407,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -13163,6 +13419,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13172,6 +13429,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -13183,6 +13441,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -13194,6 +13453,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13203,6 +13463,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -13214,6 +13475,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13223,6 +13485,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -13234,6 +13497,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13243,6 +13507,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -13254,6 +13519,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13263,6 +13529,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -13274,6 +13541,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13283,6 +13551,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -13294,6 +13563,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -13305,6 +13575,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13314,6 +13585,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13323,6 +13595,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13332,6 +13605,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13341,6 +13615,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13350,6 +13625,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13359,6 +13635,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13368,6 +13645,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13377,6 +13655,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13386,6 +13665,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13395,6 +13675,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13404,6 +13685,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13413,6 +13695,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -13424,6 +13707,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13433,6 +13717,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -13444,6 +13729,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13453,6 +13739,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -13464,6 +13751,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -13475,6 +13763,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13484,6 +13773,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -13495,6 +13785,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13504,6 +13795,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -13515,6 +13807,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13524,6 +13817,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -13535,6 +13829,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13544,6 +13839,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -13555,6 +13851,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13564,6 +13861,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -13575,6 +13873,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -13586,6 +13885,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13595,6 +13895,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13604,6 +13905,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13613,6 +13915,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13622,6 +13925,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13631,6 +13935,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13640,6 +13945,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13649,6 +13955,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13658,6 +13965,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13667,6 +13975,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13676,6 +13985,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13685,6 +13995,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13694,6 +14005,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -13705,6 +14017,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13714,6 +14027,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -13725,6 +14039,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13734,6 +14049,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C2" @@ -13745,6 +14061,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "B2" @@ -13756,6 +14073,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13765,6 +14083,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -13776,6 +14095,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13785,6 +14105,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "slotName": "C3" @@ -13796,6 +14117,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13805,6 +14127,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -13816,6 +14139,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13825,6 +14149,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -13836,6 +14161,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13845,6 +14171,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "C4" @@ -13856,6 +14183,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -13867,6 +14195,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13876,6 +14205,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13885,6 +14215,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13894,6 +14225,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13903,6 +14235,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13912,6 +14245,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13921,6 +14255,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13930,6 +14265,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13939,6 +14275,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13948,6 +14285,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13957,6 +14295,7 @@ }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": {}, "strategy": "usingGripper" @@ -13966,12 +14305,14 @@ }, { "commandType": "thermocycler/closeLid", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "thermocycler/setTargetBlockTemperature", + "notes": [], "params": { "celsius": 75.0, "holdTimeSeconds": 5.0 @@ -13983,12 +14324,14 @@ }, { "commandType": "thermocycler/waitForBlockTemperature", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "thermocycler/setTargetLidTemperature", + "notes": [], "params": { "celsius": 80.0 }, @@ -13999,24 +14342,28 @@ }, { "commandType": "thermocycler/waitForLidTemperature", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "thermocycler/deactivateBlock", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "thermocycler/deactivateLid", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "heaterShaker/openLabwareLatch", + "notes": [], "params": {}, "result": { "pipetteRetracted": true @@ -14025,12 +14372,14 @@ }, { "commandType": "heaterShaker/closeLabwareLatch", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "heaterShaker/setTargetTemperature", + "notes": [], "params": { "celsius": 75.0 }, @@ -14039,6 +14388,7 @@ }, { "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "notes": [], "params": { "rpm": 1000.0 }, @@ -14049,24 +14399,28 @@ }, { "commandType": "heaterShaker/waitForTemperature", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "heaterShaker/deactivateHeater", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "heaterShaker/deactivateShaker", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "temperatureModule/setTargetTemperature", + "notes": [], "params": { "celsius": 80.0 }, @@ -14077,12 +14431,14 @@ }, { "commandType": "temperatureModule/waitForTemperature", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "temperatureModule/setTargetTemperature", + "notes": [], "params": { "celsius": 10.0 }, @@ -14093,18 +14449,21 @@ }, { "commandType": "temperatureModule/waitForTemperature", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "temperatureModule/deactivate", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "moveLabware", + "notes": [], "params": { "newLocation": { "addressableAreaName": "D4" @@ -14125,7 +14484,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000_96_Gripper_2_16_TriggerPrepareForMountMovement.py", + "name": "Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_TriggerPrepareForMountMovement.py", "role": "main" }, { @@ -14238,5 +14597,6 @@ "pipetteName": "p1000_96" } ], - "robotType": "OT-3 Standard" + "robotType": "OT-3 Standard", + "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a08dfa462f][OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3251c6e175][OT2_S_v2_2_P300S_None_MM1_MM2_EngageMagHeightFromBase].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a08dfa462f][OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3251c6e175][OT2_S_v2_2_P300S_None_MM1_MM2_EngageMagHeightFromBase].json index 1f5fb20889a..12e563ee366 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a08dfa462f][OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3251c6e175][OT2_S_v2_2_P300S_None_MM1_MM2_EngageMagHeightFromBase].json @@ -1519,7 +1519,7 @@ "errors": [], "files": [ { - "name": "OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase.py", + "name": "OT2_S_v2_2_P300S_None_MM1_MM2_EngageMagHeightFromBase.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[98bf2a2368][v2_18_NO_PIPETTES_DescriptionTooLongRTP].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[33db294a9b][Flex_X_v2_18_NO_PIPETTES_DescriptionTooLongRTP].json similarity index 95% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[98bf2a2368][v2_18_NO_PIPETTES_DescriptionTooLongRTP].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[33db294a9b][Flex_X_v2_18_NO_PIPETTES_DescriptionTooLongRTP].json index 7941715858e..a61a4a011ff 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[98bf2a2368][v2_18_NO_PIPETTES_DescriptionTooLongRTP].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[33db294a9b][Flex_X_v2_18_NO_PIPETTES_DescriptionTooLongRTP].json @@ -27,6 +27,10 @@ }, "errors": [], "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_DescriptionTooLongRTP.py", + "role": "main" + }, { "name": "cpx_4_tuberack_100ul.json", "role": "labware" @@ -46,10 +50,6 @@ { "name": "sample_labware.json", "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_DescriptionTooLongRTP.py", - "role": "main" } ], "labware": [], diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[38b5298c77][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[38b5298c77][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum].json index bf3cb2b3a98..94b4b0ec4eb 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[38b5298c77][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[38b5298c77][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 1, - "command_output": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.10/runpy.py\", line 187, in _run_module_as_main\n mod_name, mod_spec, code = _get_module_details(mod_name, _Error)\n File \"/usr/local/lib/python3.10/runpy.py\", line 146, in _get_module_details\n return _get_module_details(pkg_main_name, error)\n File \"/usr/local/lib/python3.10/runpy.py\", line 110, in _get_module_details\n __import__(pkg_name)\n File \"/usr/local/lib/python3.10/site-packages/opentrons/cli/__init__.py\", line 9, in \n from .analyze import analyze\n File \"/usr/local/lib/python3.10/site-packages/opentrons/cli/analyze.py\", line 31, in \n from opentrons.util.performance_helpers import track_analysis\n File \"/usr/local/lib/python3.10/site-packages/opentrons/util/performance_helpers.py\", line 4, in \n from opentrons_shared_data.performance.dev_types import (\nModuleNotFoundError: No module named 'opentrons_shared_data.performance'\n" + "detail": "ParameterValueError [line 32]: Parameter must be between 1 and 3 inclusive.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be between 1 and 3 inclusive.", + "errorCode": "4000", + "errorInfo": { + "args": "('Parameter must be between 1 and 3 inclusive.',)", + "class": "ParameterValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum.py\", line 32, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 56, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 104, in value\n raise ParameterValueError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_less_than_minimum.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Default not in range" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5fc4f3adbc][OT2_P20SRight_None_6_1_SimpleTransferError].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4389e3ab18][OT2_X_v6_P20S_None_SimpleTransfer].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5fc4f3adbc][OT2_P20SRight_None_6_1_SimpleTransferError].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4389e3ab18][OT2_X_v6_P20S_None_SimpleTransfer].json index a5d379ba794..b4b8520bb3a 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5fc4f3adbc][OT2_P20SRight_None_6_1_SimpleTransferError].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4389e3ab18][OT2_X_v6_P20S_None_SimpleTransfer].json @@ -1740,7 +1740,7 @@ ], "files": [ { - "name": "OT2_P20SRight_None_6_1_SimpleTransferError.json", + "name": "OT2_X_v6_P20S_None_SimpleTransfer.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[140ede3934][v2_18_NO_PIPETTES_GoldenRTP_OT2].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4458220422][OT2_S_v2_18_NO_PIPETTES_GoldenRTP_OT2].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[140ede3934][v2_18_NO_PIPETTES_GoldenRTP_OT2].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4458220422][OT2_S_v2_18_NO_PIPETTES_GoldenRTP_OT2].json index dd0ddada99c..0037466294b 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[140ede3934][v2_18_NO_PIPETTES_GoldenRTP_OT2].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4458220422][OT2_S_v2_18_NO_PIPETTES_GoldenRTP_OT2].json @@ -207,6 +207,10 @@ }, "errors": [], "files": [ + { + "name": "OT2_S_v2_18_NO_PIPETTES_GoldenRTP_OT2.py", + "role": "main" + }, { "name": "cpx_4_tuberack_100ul.json", "role": "labware" @@ -226,10 +230,6 @@ { "name": "sample_labware.json", "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_GoldenRTP_OT2.py", - "role": "main" } ], "labware": [], diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a23a1de3ce][OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4a82419f1f][OT2_S_v2_16_P300M_P20S_HS_TC_TM_SmokeTestV3].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a23a1de3ce][OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4a82419f1f][OT2_S_v2_16_P300M_P20S_HS_TC_TM_SmokeTestV3].json index 01832c02dce..22da4b6635a 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a23a1de3ce][OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4a82419f1f][OT2_S_v2_16_P300M_P20S_HS_TC_TM_SmokeTestV3].json @@ -15549,7 +15549,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3.py", + "name": "OT2_S_v2_16_P300M_P20S_HS_TC_TM_SmokeTestV3.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b20d3ccf8f][OT2_P300M_P20S_TC_HS_TM_2_17_dispense_changes].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4b17883f74][OT2_S_v2_17_P300M_P20S_HS_TC_TM_dispense_changes].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b20d3ccf8f][OT2_P300M_P20S_TC_HS_TM_2_17_dispense_changes].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4b17883f74][OT2_S_v2_17_P300M_P20S_HS_TC_TM_dispense_changes].json index c6a45057ed3..4fb35baadae 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b20d3ccf8f][OT2_P300M_P20S_TC_HS_TM_2_17_dispense_changes].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4b17883f74][OT2_S_v2_17_P300M_P20S_HS_TC_TM_dispense_changes].json @@ -2988,7 +2988,7 @@ ], "files": [ { - "name": "OT2_P300M_P20S_TC_HS_TM_2_17_dispense_changes.py", + "name": "OT2_S_v2_17_P300M_P20S_HS_TC_TM_dispense_changes.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cda954ef1e][Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4cb705bdbf][Flex_X_v2_16_NO_PIPETTES_MM_MagneticModuleInFlexProtocol].json similarity index 98% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cda954ef1e][Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4cb705bdbf][Flex_X_v2_16_NO_PIPETTES_MM_MagneticModuleInFlexProtocol].json index cdc0aca74d4..1f2a502c2ab 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cda954ef1e][Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4cb705bdbf][Flex_X_v2_16_NO_PIPETTES_MM_MagneticModuleInFlexProtocol].json @@ -68,7 +68,7 @@ ], "files": [ { - "name": "Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol.py", + "name": "Flex_X_v2_16_NO_PIPETTES_MM_MagneticModuleInFlexProtocol.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4fadc166c0][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4fadc166c0][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name].json index d154fb760d8..b41923a6a2d 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4fadc166c0][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4fadc166c0][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 2, - "command_output": "Usage: python -m opentrons.cli analyze [OPTIONS] FILES...\nTry 'python -m opentrons.cli analyze --help' for help.\n\nError: Invalid value for 'FILES...': Path '/var/lib/ot/protocols/generated_protocols/Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name.py' does not exist.\n" + "detail": "ParameterNameError [line 39]: Variable name must be a string.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterNameError: Variable name must be a string.", + "errorCode": "4000", + "errorInfo": { + "args": "('Variable name must be a string.',)", + "class": "ParameterNameError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name.py\", line 39, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 93, in add_float\n parameter = parameter_definition.create_float_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 202, in create_float_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 57, in __init__\n self._variable_name = validation.ensure_variable_name(variable_name)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 46, in ensure_variable_name\n raise ParameterNameError(\"Variable name must be a string.\")\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_variable_name.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Description Too Long 2.18" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[51a761307d][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[51a761307d][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum].json index bf3cb2b3a98..b54f76e6b5f 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[51a761307d][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[51a761307d][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 1, - "command_output": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.10/runpy.py\", line 187, in _run_module_as_main\n mod_name, mod_spec, code = _get_module_details(mod_name, _Error)\n File \"/usr/local/lib/python3.10/runpy.py\", line 146, in _get_module_details\n return _get_module_details(pkg_main_name, error)\n File \"/usr/local/lib/python3.10/runpy.py\", line 110, in _get_module_details\n __import__(pkg_name)\n File \"/usr/local/lib/python3.10/site-packages/opentrons/cli/__init__.py\", line 9, in \n from .analyze import analyze\n File \"/usr/local/lib/python3.10/site-packages/opentrons/cli/analyze.py\", line 31, in \n from opentrons.util.performance_helpers import track_analysis\n File \"/usr/local/lib/python3.10/site-packages/opentrons/util/performance_helpers.py\", line 4, in \n from opentrons_shared_data.performance.dev_types import (\nModuleNotFoundError: No module named 'opentrons_shared_data.performance'\n" + "detail": "ParameterValueError [line 23]: Parameter must be between 1 and 3 inclusive.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be between 1 and 3 inclusive.", + "errorCode": "4000", + "errorInfo": { + "args": "('Parameter must be between 1 and 3 inclusive.',)", + "class": "ParameterValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum.py\", line 23, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 56, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 104, in value\n raise ParameterValueError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Default not in range" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5fa61df9e2][OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[51fc977577][OT2_S_v6_P300M_P20S_MixTransferManyLiquids].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5fa61df9e2][OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[51fc977577][OT2_S_v6_P300M_P20S_MixTransferManyLiquids].json index a3065f29fa7..eb584b67d86 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5fa61df9e2][OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[51fc977577][OT2_S_v6_P300M_P20S_MixTransferManyLiquids].json @@ -5250,7 +5250,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids.json", + "name": "OT2_S_v6_P300M_P20S_MixTransferManyLiquids.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6b0e10c81f][OT2_P300S_None_2_16_verifyNoFloatingPointErrorInPipetting].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[54f717cfd1][OT2_S_v2_16_P300S_None_verifyNoFloatingPointErrorInPipetting].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6b0e10c81f][OT2_P300S_None_2_16_verifyNoFloatingPointErrorInPipetting].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[54f717cfd1][OT2_S_v2_16_P300S_None_verifyNoFloatingPointErrorInPipetting].json index 66b3e6cd601..7a72c2ac8a8 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6b0e10c81f][OT2_P300S_None_2_16_verifyNoFloatingPointErrorInPipetting].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[54f717cfd1][OT2_S_v2_16_P300S_None_verifyNoFloatingPointErrorInPipetting].json @@ -1769,7 +1769,7 @@ "errors": [], "files": [ { - "name": "OT2_P300S_None_2_16_verifyNoFloatingPointErrorInPipetting.py", + "name": "OT2_S_v2_16_P300S_None_verifyNoFloatingPointErrorInPipetting.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ac35bb394d][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[58750bf5fb][Flex_X_v2_16_NO_PIPETTES_TrashBinInStagingAreaCol4].json similarity index 75% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ac35bb394d][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[58750bf5fb][Flex_X_v2_16_NO_PIPETTES_TrashBinInStagingAreaCol4].json index 4beea85705a..c123a9162fc 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ac35bb394d][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[58750bf5fb][Flex_X_v2_16_NO_PIPETTES_TrashBinInStagingAreaCol4].json @@ -28,7 +28,7 @@ "errorInfo": { "args": "('Staging areas not permitted for trash bin.',)", "class": "ValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 512, in load_trash_bin\n raise ValueError(\"Staging areas not permitted for trash bin.\")\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_16_NO_PIPETTES_TrashBinInStagingAreaCol4.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 512, in load_trash_bin\n raise ValueError(\"Staging areas not permitted for trash bin.\")\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -38,7 +38,7 @@ ], "files": [ { - "name": "Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4.py", + "name": "Flex_X_v2_16_NO_PIPETTES_TrashBinInStagingAreaCol4.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3369b24214][Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5e958b7c98][Flex_X_v2_16_P300MGen2_None_OT2PipetteInFlexProtocol].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3369b24214][Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5e958b7c98][Flex_X_v2_16_P300MGen2_None_OT2PipetteInFlexProtocol].json index f0b422e26bf..946f02f66fb 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3369b24214][Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5e958b7c98][Flex_X_v2_16_P300MGen2_None_OT2PipetteInFlexProtocol].json @@ -1205,7 +1205,7 @@ ], "files": [ { - "name": "Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol.py", + "name": "Flex_X_v2_16_P300MGen2_None_OT2PipetteInFlexProtocol.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[60015c6e65][OT2_X_v2_18_None_None_duplicateRTPVariableName].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[60015c6e65][OT2_X_v2_18_None_None_duplicateRTPVariableName].json new file mode 100644 index 00000000000..477935caf3a --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[60015c6e65][OT2_X_v2_18_None_None_duplicateRTPVariableName].json @@ -0,0 +1,95 @@ +{ + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ParameterNameError [line 28]: \"variable_a\" is already defined as a variable name for another parameter. All variable names must be unique.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterNameError: \"variable_a\" is already defined as a variable name for another parameter. All variable names must be unique.", + "errorCode": "4000", + "errorInfo": { + "args": "('\"variable_a\" is already defined as a variable name for another parameter. All variable names must be unique.',)", + "class": "ParameterNameError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_X_v2_18_None_None_duplicateRTPVariableName.py\", line 28, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 55, in add_int\n validation.validate_variable_name_unique(variable_name, set(self._parameters))\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 24, in validate_variable_name_unique\n raise ParameterNameError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "OT2_X_v2_18_None_None_duplicateRTPVariableName.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [], + "liquids": [], + "metadata": { + "protocolName": "Multiple RTP Variables with Same Name" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-2 Standard", + "runTimeParameters": [ + { + "default": 1.0, + "description": "This is a description", + "displayName": "int 1", + "max": 3.0, + "min": 1.0, + "type": "int", + "value": 1.0, + "variableName": "variable_a" + }, + { + "default": 1.0, + "description": "This is a description", + "displayName": "int 2", + "max": 3.0, + "min": 1.0, + "type": "int", + "value": 1.0, + "variableName": "variable_b" + } + ] +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[25f79fd65e][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[604023f7f1][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInStagingAreaCol3].json similarity index 98% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[25f79fd65e][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[604023f7f1][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInStagingAreaCol3].json index 87642f0e06f..5555f2a39c9 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[25f79fd65e][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[604023f7f1][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInStagingAreaCol3].json @@ -147,7 +147,7 @@ ], "files": [ { - "name": "Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3.py", + "name": "Flex_X_v2_16_NO_PIPETTES_TM_ModuleInStagingAreaCol3.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[60c1d39463][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[60c1d39463][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices].json index bf3cb2b3a98..4670b2eed78 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[60c1d39463][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[60c1d39463][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 1, - "command_output": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.10/runpy.py\", line 187, in _run_module_as_main\n mod_name, mod_spec, code = _get_module_details(mod_name, _Error)\n File \"/usr/local/lib/python3.10/runpy.py\", line 146, in _get_module_details\n return _get_module_details(pkg_main_name, error)\n File \"/usr/local/lib/python3.10/runpy.py\", line 110, in _get_module_details\n __import__(pkg_name)\n File \"/usr/local/lib/python3.10/site-packages/opentrons/cli/__init__.py\", line 9, in \n from .analyze import analyze\n File \"/usr/local/lib/python3.10/site-packages/opentrons/cli/analyze.py\", line 31, in \n from opentrons.util.performance_helpers import track_analysis\n File \"/usr/local/lib/python3.10/site-packages/opentrons/util/performance_helpers.py\", line 4, in \n from opentrons_shared_data.performance.dev_types import (\nModuleNotFoundError: No module named 'opentrons_shared_data.performance'\n" + "detail": "ParameterValueError [line 24]: Parameter must be set to one of the allowed values of {9, 20, 15}.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be set to one of the allowed values of {9, 20, 15}.", + "errorCode": "4000", + "errorInfo": { + "args": "('Parameter must be set to one of the allowed values of {9, 20, 15}.',)", + "class": "ParameterValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices.py\", line 24, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 56, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 95, in value\n raise ParameterValueError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "default choice does not match a choice" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[512a897a47][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6126498df7][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInStagingAreaCol4].json similarity index 75% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[512a897a47][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6126498df7][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInStagingAreaCol4].json index ce2f5357e41..e8964ba8d4c 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[512a897a47][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6126498df7][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInStagingAreaCol4].json @@ -28,7 +28,7 @@ "errorInfo": { "args": "('Cannot load a module onto a staging slot.',)", "class": "ValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 812, in load_module\n raise ValueError(\"Cannot load a module onto a staging slot.\")\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_16_NO_PIPETTES_TM_ModuleInStagingAreaCol4.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 812, in load_module\n raise ValueError(\"Cannot load a module onto a staging slot.\")\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -38,7 +38,7 @@ ], "files": [ { - "name": "Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4.py", + "name": "Flex_X_v2_16_NO_PIPETTES_TM_ModuleInStagingAreaCol4.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0a5024181f][v2_18_NO_PIPETTES_GoldenRTP].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[61619d5498][Flex_S_v2_18_NO_PIPETTES_GoldenRTP].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0a5024181f][v2_18_NO_PIPETTES_GoldenRTP].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[61619d5498][Flex_S_v2_18_NO_PIPETTES_GoldenRTP].json index d8724684b87..73acba65566 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0a5024181f][v2_18_NO_PIPETTES_GoldenRTP].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[61619d5498][Flex_S_v2_18_NO_PIPETTES_GoldenRTP].json @@ -207,6 +207,10 @@ }, "errors": [], "files": [ + { + "name": "Flex_S_v2_18_NO_PIPETTES_GoldenRTP.py", + "role": "main" + }, { "name": "cpx_4_tuberack_100ul.json", "role": "labware" @@ -226,10 +230,6 @@ { "name": "sample_labware.json", "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_GoldenRTP.py", - "role": "main" } ], "labware": [], diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6ad5590adf][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6ad5590adf][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit].json index 63d50a052ed..5265e8ee773 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6ad5590adf][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6ad5590adf][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 2, - "command_output": "Usage: python -m opentrons.cli analyze [OPTIONS] FILES...\nTry 'python -m opentrons.cli analyze --help' for help.\n\nError: Invalid value for 'FILES...': Path '/var/lib/ot/protocols/generated_protocols/Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit.py' does not exist.\n" + "detail": "ParameterNameError [line 113]: Unit must be a string and at most 10 characters.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterNameError: Unit must be a string and at most 10 characters.", + "errorCode": "4000", + "errorInfo": { + "args": "('Unit must be a string and at most 10 characters.',)", + "class": "ParameterNameError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit.py\", line 113, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 56, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 59, in __init__\n self._unit = validation.ensure_unit_string_length(unit)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 74, in ensure_unit_string_length\n raise ParameterNameError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Description Too Long 2.18" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f60da4eefb][OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6cee20a957][OT2_S_v2_12_NO_PIPETTES_Python310SyntaxRobotAnalysisOnlyError].json similarity index 96% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f60da4eefb][OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6cee20a957][OT2_S_v2_12_NO_PIPETTES_Python310SyntaxRobotAnalysisOnlyError].json index eb21e0a61f7..695428d10ba 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f60da4eefb][OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6cee20a957][OT2_S_v2_12_NO_PIPETTES_Python310SyntaxRobotAnalysisOnlyError].json @@ -58,7 +58,7 @@ "errors": [], "files": [ { - "name": "OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError.py", + "name": "OT2_S_v2_12_NO_PIPETTES_Python310SyntaxRobotAnalysisOnlyError.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d0c057a918][Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e34343cfc][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TM_MagMaxRNAExtraction].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d0c057a918][Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e34343cfc][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TM_MagMaxRNAExtraction].json index 325dc552421..4fedc777673 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d0c057a918][Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e34343cfc][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TM_MagMaxRNAExtraction].json @@ -13135,7 +13135,7 @@ ], "files": [ { - "name": "Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch.py", + "name": "Flex_S_v2_15_P1000_96_GRIP_HS_MB_TM_MagMaxRNAExtraction.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e49dae5293][OT2_None_None_HS_2_16_AnalysisError_HeaterShakerConflictWithTrashBin1].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e5128f107][OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin1].json similarity index 92% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e49dae5293][OT2_None_None_HS_2_16_AnalysisError_HeaterShakerConflictWithTrashBin1].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e5128f107][OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin1].json index e5e032fc69d..cdbe1cbc2f6 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e49dae5293][OT2_None_None_HS_2_16_AnalysisError_HeaterShakerConflictWithTrashBin1].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e5128f107][OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin1].json @@ -478,7 +478,7 @@ "errorInfo": { "args": "('trash bin in slot 12 prevents heaterShakerModuleV1 from using slot 11.',)", "class": "DeckConflictError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_None_None_HS_2_16_AnalysisError_HeaterShakerConflictWithTrashBin1.py\", line 11, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 814, in load_module\n module_core = self._core.load_module(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 423, in load_module\n deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/deck_conflict.py\", line 203, in check\n wrapped_deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/motion_planning/deck_conflict.py\", line 223, in check\n raise DeckConflictError(\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin1.py\", line 11, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 814, in load_module\n module_core = self._core.load_module(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 423, in load_module\n deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/deck_conflict.py\", line 203, in check\n wrapped_deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/motion_planning/deck_conflict.py\", line 223, in check\n raise DeckConflictError(\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -488,7 +488,7 @@ ], "files": [ { - "name": "OT2_None_None_HS_2_16_AnalysisError_HeaterShakerConflictWithTrashBin1.py", + "name": "OT2_X_v2_16_None_None_HS_HeaterShakerConflictWithTrashBin1.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e744cbb48][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e744cbb48][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json index bf3cb2b3a98..df53cf0907c 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e744cbb48][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e744cbb48][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 1, - "command_output": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.10/runpy.py\", line 187, in _run_module_as_main\n mod_name, mod_spec, code = _get_module_details(mod_name, _Error)\n File \"/usr/local/lib/python3.10/runpy.py\", line 146, in _get_module_details\n return _get_module_details(pkg_main_name, error)\n File \"/usr/local/lib/python3.10/runpy.py\", line 110, in _get_module_details\n __import__(pkg_name)\n File \"/usr/local/lib/python3.10/site-packages/opentrons/cli/__init__.py\", line 9, in \n from .analyze import analyze\n File \"/usr/local/lib/python3.10/site-packages/opentrons/cli/analyze.py\", line 31, in \n from opentrons.util.performance_helpers import track_analysis\n File \"/usr/local/lib/python3.10/site-packages/opentrons/util/performance_helpers.py\", line 4, in \n from opentrons_shared_data.performance.dev_types import (\nModuleNotFoundError: No module named 'opentrons_shared_data.performance'\n" + "detail": "ParameterValueError [line 48]: Parameter must be set to one of the allowed values of {'flex_1channel_50', 'flex_8channel_50'}.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be set to one of the allowed values of {'flex_1channel_50', 'flex_8channel_50'}.", + "errorCode": "4000", + "errorInfo": { + "args": "(\"Parameter must be set to one of the allowed values of {'flex_1channel_50', 'flex_8channel_50'}.\",)", + "class": "ParameterValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices.py\", line 48, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 152, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 95, in value\n raise ParameterValueError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "default choice does not match a choice" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[56ce1419a7][OT2_P300SLeft_MM1_MM_TM_2_3_Mix].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6f3e297a11][OT2_S_v2_3_P300S_None_MM1_MM2_TM_Mix].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[56ce1419a7][OT2_P300SLeft_MM1_MM_TM_2_3_Mix].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6f3e297a11][OT2_S_v2_3_P300S_None_MM1_MM2_TM_Mix].json index fec10bf30f7..7cb40077d2e 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[56ce1419a7][OT2_P300SLeft_MM1_MM_TM_2_3_Mix].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6f3e297a11][OT2_S_v2_3_P300S_None_MM1_MM2_TM_Mix].json @@ -3285,7 +3285,7 @@ "errors": [], "files": [ { - "name": "OT2_P300SLeft_MM1_MM_TM_2_3_Mix.py", + "name": "OT2_S_v2_3_P300S_None_MM1_MM2_TM_Mix.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7d76f2144c][OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6f84e60cb0][OT2_S_v2_16_P300M_P20S_HS_TC_TM_aspirateDispenseMix0Volume].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7d76f2144c][OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6f84e60cb0][OT2_S_v2_16_P300M_P20S_HS_TC_TM_aspirateDispenseMix0Volume].json index 526eda204d8..df4476882f5 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7d76f2144c][OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6f84e60cb0][OT2_S_v2_16_P300M_P20S_HS_TC_TM_aspirateDispenseMix0Volume].json @@ -2723,7 +2723,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume.py", + "name": "OT2_S_v2_16_P300M_P20S_HS_TC_TM_aspirateDispenseMix0Volume.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7215d9088e][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7215d9088e][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default].json deleted file mode 100644 index 886be44959a..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7215d9088e][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "ParameterValueError [line 73]: Parameter value 6 has type , must match type .", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter value 6 has type , must match type .", - "errorCode": "4000", - "errorInfo": { - "args": "(\"Parameter value 6 has type , must match type .\",)", - "class": "ParameterValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default.py\", line 73, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 148, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 73, in __init__\n validation.validate_options(default, minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 218, in validate_options\n validate_type(default, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 205, in validate_type\n raise ParameterValueError(\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Description Too Long 2.18" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7a9449b64c][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7a9449b64c][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value].json deleted file mode 100644 index 046cad9e591..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7a9449b64c][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "ParameterDefinitionError [line 62]: All choices provided must match type ", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "opentrons.protocols.parameters.types.ParameterDefinitionError: All choices provided must match type ", - "errorCode": "4000", - "errorInfo": { - "args": "(\"All choices provided must match type \",)", - "class": "ParameterDefinitionError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value.py\", line 62, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 148, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 73, in __init__\n validation.validate_options(default, minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 226, in validate_options\n _validate_choices(minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 164, in _validate_choices\n raise ParameterDefinitionError(\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Description Too Long 2.18" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7d06568bfe][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7d06568bfe][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name].json index 8bd304d3726..41eeee384db 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7d06568bfe][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7d06568bfe][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 2, - "command_output": "Usage: python -m opentrons.cli analyze [OPTIONS] FILES...\nTry 'python -m opentrons.cli analyze --help' for help.\n\nError: Invalid value for 'FILES...': Path '/var/lib/ot/protocols/generated_protocols/Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name.py' does not exist.\n" + "detail": "ParameterNameError [line 51]: Display name must be a string and at most 30 characters.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterNameError: Display name must be a string and at most 30 characters.", + "errorCode": "4000", + "errorInfo": { + "args": "('Display name must be a string and at most 30 characters.',)", + "class": "ParameterNameError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name.py\", line 51, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 152, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 73, in __init__\n validation.validate_options(default, minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 264, in validate_options\n _validate_choices(minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 189, in _validate_choices\n ensure_display_name(display_name)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 33, in ensure_display_name\n raise ParameterNameError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Description Too Long 2.18" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7f2ef0eaff][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7f2ef0eaff][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices].json index bf3cb2b3a98..8181845d3d4 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7f2ef0eaff][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7f2ef0eaff][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 1, - "command_output": "Traceback (most recent call last):\n File \"/usr/local/lib/python3.10/runpy.py\", line 187, in _run_module_as_main\n mod_name, mod_spec, code = _get_module_details(mod_name, _Error)\n File \"/usr/local/lib/python3.10/runpy.py\", line 146, in _get_module_details\n return _get_module_details(pkg_main_name, error)\n File \"/usr/local/lib/python3.10/runpy.py\", line 110, in _get_module_details\n __import__(pkg_name)\n File \"/usr/local/lib/python3.10/site-packages/opentrons/cli/__init__.py\", line 9, in \n from .analyze import analyze\n File \"/usr/local/lib/python3.10/site-packages/opentrons/cli/analyze.py\", line 31, in \n from opentrons.util.performance_helpers import track_analysis\n File \"/usr/local/lib/python3.10/site-packages/opentrons/util/performance_helpers.py\", line 4, in \n from opentrons_shared_data.performance.dev_types import (\nModuleNotFoundError: No module named 'opentrons_shared_data.performance'\n" + "detail": "ParameterValueError [line 36]: Parameter must be set to one of the allowed values of {160.0, 100.0, 200.0}.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be set to one of the allowed values of {160.0, 100.0, 200.0}.", + "errorCode": "4000", + "errorInfo": { + "args": "('Parameter must be set to one of the allowed values of {160.0, 100.0, 200.0}.',)", + "class": "ParameterValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices.py\", line 36, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 93, in add_float\n parameter = parameter_definition.create_float_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 202, in create_float_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 95, in value\n raise ParameterValueError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_float_default_no_matching_choices.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "default choice does not match a choice" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7be98bf838][Flex_None_None_2_16_AnalysisError_TrashBinInCol2].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[82e9853b34][Flex_X_v2_16_NO_PIPETTES_TrashBinInCol2].json similarity index 72% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7be98bf838][Flex_None_None_2_16_AnalysisError_TrashBinInCol2].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[82e9853b34][Flex_X_v2_16_NO_PIPETTES_TrashBinInCol2].json index 89c43a035a9..80b5f0999af 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7be98bf838][Flex_None_None_2_16_AnalysisError_TrashBinInCol2].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[82e9853b34][Flex_X_v2_16_NO_PIPETTES_TrashBinInCol2].json @@ -28,7 +28,7 @@ "errorInfo": { "args": "('Invalid location for trash bin: C2.\\nValid slots: Any slot in column 1 or 3.',)", "class": "InvalidTrashBinLocationError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_2_16_AnalysisError_TrashBinInCol2.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 513, in load_trash_bin\n addressable_area_name = validation.ensure_and_convert_trash_bin_location(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/validation.py\", line 331, in ensure_and_convert_trash_bin_location\n raise InvalidTrashBinLocationError(\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_16_NO_PIPETTES_TrashBinInCol2.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 513, in load_trash_bin\n addressable_area_name = validation.ensure_and_convert_trash_bin_location(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/validation.py\", line 331, in ensure_and_convert_trash_bin_location\n raise InvalidTrashBinLocationError(\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -38,7 +38,7 @@ ], "files": [ { - "name": "Flex_None_None_2_16_AnalysisError_TrashBinInCol2.py", + "name": "Flex_X_v2_16_NO_PIPETTES_TrashBinInCol2.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2251879791][OT2_P300M_P20S_None_2_12_FailOnRun].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8455adcea9][OT2_S_v2_12_P300M_P20S_FailOnRun].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2251879791][OT2_P300M_P20S_None_2_12_FailOnRun].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8455adcea9][OT2_S_v2_12_P300M_P20S_FailOnRun].json index 5608b51bab4..b44fa048895 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2251879791][OT2_P300M_P20S_None_2_12_FailOnRun].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8455adcea9][OT2_S_v2_12_P300M_P20S_FailOnRun].json @@ -2583,7 +2583,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_None_2_12_FailOnRun.py", + "name": "OT2_S_v2_12_P300M_P20S_FailOnRun.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4017e085e6][OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8860ee702c][OT2_S_v2_14_P300M_P20S_HS_TC_TM_SmokeTestV3].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4017e085e6][OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8860ee702c][OT2_S_v2_14_P300M_P20S_HS_TC_TM_SmokeTestV3].json index cca27aadcbb..47aea45189a 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4017e085e6][OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8860ee702c][OT2_S_v2_14_P300M_P20S_HS_TC_TM_SmokeTestV3].json @@ -12728,7 +12728,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3.py", + "name": "OT2_S_v2_14_P300M_P20S_HS_TC_TM_SmokeTestV3.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8f2cb4b133][Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[88a20da279][Flex_S_v2_15_P50M_P1000M_KAPALibraryQuantLongv2].json similarity index 96% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8f2cb4b133][Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[88a20da279][Flex_S_v2_15_P50M_P1000M_KAPALibraryQuantLongv2].json index 021cb9bf4db..24f2c1e2fb6 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8f2cb4b133][Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[88a20da279][Flex_S_v2_15_P50M_P1000M_KAPALibraryQuantLongv2].json @@ -17877,7 +17877,7 @@ "commandType": "custom", "notes": [], "params": { - "legacyCommandText": "Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2.py", + "legacyCommandText": "Flex_S_v2_15_P50M_P1000M_KAPALibraryQuantLongv2.py", "legacyCommandType": "command.COMMENT" }, "result": {}, @@ -17977,7 +17977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18003,7 +18003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18029,7 +18029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18055,7 +18055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18081,7 +18081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18107,7 +18107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18166,7 +18166,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18192,7 +18192,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 98.0, "wellLocation": { "offset": { @@ -18251,7 +18251,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 95.0, "wellLocation": { "offset": { @@ -18334,7 +18334,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -18382,7 +18382,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18408,7 +18408,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18434,7 +18434,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18460,7 +18460,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18486,7 +18486,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18512,7 +18512,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18571,7 +18571,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18597,7 +18597,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 98.0, "wellLocation": { "offset": { @@ -18656,7 +18656,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 95.0, "wellLocation": { "offset": { @@ -18739,7 +18739,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -18787,7 +18787,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18813,7 +18813,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18839,7 +18839,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18865,7 +18865,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18891,7 +18891,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18917,7 +18917,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18976,7 +18976,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 200.0, "wellLocation": { "offset": { @@ -19002,7 +19002,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 98.0, "wellLocation": { "offset": { @@ -19061,7 +19061,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 95.0, "wellLocation": { "offset": { @@ -19144,7 +19144,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -19248,7 +19248,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 2.0, "wellLocation": { "offset": { @@ -19274,7 +19274,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 2.0, "wellLocation": { "offset": { @@ -19350,7 +19350,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 2.0, "wellLocation": { "offset": { @@ -19376,7 +19376,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 2.0, "wellLocation": { "offset": { @@ -19452,7 +19452,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 2.0, "wellLocation": { "offset": { @@ -19478,7 +19478,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 2.0, "wellLocation": { "offset": { @@ -19588,7 +19588,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19614,7 +19614,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19640,7 +19640,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19666,7 +19666,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19692,7 +19692,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19718,7 +19718,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19744,7 +19744,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19770,7 +19770,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19796,7 +19796,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19822,7 +19822,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19848,7 +19848,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19874,7 +19874,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19900,7 +19900,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19926,7 +19926,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19952,7 +19952,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19978,7 +19978,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20004,7 +20004,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20030,7 +20030,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20056,7 +20056,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20082,7 +20082,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20108,7 +20108,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20134,7 +20134,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20160,7 +20160,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20186,7 +20186,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20212,7 +20212,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20238,7 +20238,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20264,7 +20264,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20290,7 +20290,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20316,7 +20316,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20342,7 +20342,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20368,7 +20368,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20394,7 +20394,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20420,7 +20420,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20446,7 +20446,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20472,7 +20472,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20498,7 +20498,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20524,7 +20524,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20550,7 +20550,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20576,7 +20576,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20602,7 +20602,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20628,7 +20628,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20654,7 +20654,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20680,7 +20680,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20706,7 +20706,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20732,7 +20732,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20758,7 +20758,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20784,7 +20784,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20810,7 +20810,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20836,7 +20836,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20862,7 +20862,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20888,7 +20888,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20914,7 +20914,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20940,7 +20940,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20966,7 +20966,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -20992,7 +20992,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21018,7 +21018,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21044,7 +21044,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21070,7 +21070,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21096,7 +21096,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21122,7 +21122,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21148,7 +21148,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21174,7 +21174,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21200,7 +21200,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21226,7 +21226,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21252,7 +21252,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21278,7 +21278,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21304,7 +21304,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21330,7 +21330,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21356,7 +21356,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21382,7 +21382,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21408,7 +21408,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21434,7 +21434,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21460,7 +21460,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21486,7 +21486,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21512,7 +21512,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21538,7 +21538,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21564,7 +21564,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21590,7 +21590,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21616,7 +21616,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21642,7 +21642,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21668,7 +21668,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21694,7 +21694,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21720,7 +21720,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21746,7 +21746,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21772,7 +21772,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21798,7 +21798,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21824,7 +21824,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21850,7 +21850,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21876,7 +21876,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21902,7 +21902,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21928,7 +21928,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21954,7 +21954,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21980,7 +21980,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22006,7 +22006,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22032,7 +22032,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22058,7 +22058,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22084,7 +22084,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22110,7 +22110,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22136,7 +22136,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22162,7 +22162,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22295,7 +22295,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22321,7 +22321,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22347,7 +22347,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22373,7 +22373,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22399,7 +22399,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22425,7 +22425,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22451,7 +22451,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22477,7 +22477,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22503,7 +22503,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22529,7 +22529,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22555,7 +22555,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22581,7 +22581,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22607,7 +22607,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22633,7 +22633,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22659,7 +22659,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22685,7 +22685,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22711,7 +22711,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22737,7 +22737,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22763,7 +22763,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22789,7 +22789,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22815,7 +22815,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22841,7 +22841,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22867,7 +22867,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22893,7 +22893,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22919,7 +22919,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22945,7 +22945,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22971,7 +22971,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -22997,7 +22997,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23023,7 +23023,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23049,7 +23049,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23075,7 +23075,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23101,7 +23101,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23127,7 +23127,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23153,7 +23153,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23179,7 +23179,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23205,7 +23205,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23231,7 +23231,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23257,7 +23257,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23283,7 +23283,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23309,7 +23309,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23335,7 +23335,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23361,7 +23361,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23387,7 +23387,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23413,7 +23413,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23439,7 +23439,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23465,7 +23465,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23491,7 +23491,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23517,7 +23517,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23543,7 +23543,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23569,7 +23569,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23595,7 +23595,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23621,7 +23621,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23647,7 +23647,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23673,7 +23673,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23699,7 +23699,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23725,7 +23725,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23751,7 +23751,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23777,7 +23777,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23803,7 +23803,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23829,7 +23829,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23855,7 +23855,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23881,7 +23881,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23907,7 +23907,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23933,7 +23933,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23959,7 +23959,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -23985,7 +23985,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24011,7 +24011,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24037,7 +24037,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24063,7 +24063,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24089,7 +24089,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24115,7 +24115,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24141,7 +24141,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24167,7 +24167,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24193,7 +24193,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24219,7 +24219,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24245,7 +24245,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24271,7 +24271,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24297,7 +24297,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24323,7 +24323,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24349,7 +24349,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24375,7 +24375,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24401,7 +24401,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24427,7 +24427,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24453,7 +24453,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24479,7 +24479,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24505,7 +24505,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24531,7 +24531,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24557,7 +24557,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24583,7 +24583,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24609,7 +24609,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24635,7 +24635,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24661,7 +24661,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24687,7 +24687,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24713,7 +24713,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24739,7 +24739,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24765,7 +24765,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24791,7 +24791,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24817,7 +24817,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24843,7 +24843,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -24869,7 +24869,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25002,7 +25002,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25028,7 +25028,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25054,7 +25054,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25080,7 +25080,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25106,7 +25106,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25132,7 +25132,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25158,7 +25158,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25184,7 +25184,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25210,7 +25210,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25236,7 +25236,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25262,7 +25262,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25288,7 +25288,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25314,7 +25314,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25340,7 +25340,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25366,7 +25366,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25392,7 +25392,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25418,7 +25418,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25444,7 +25444,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25470,7 +25470,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25496,7 +25496,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25522,7 +25522,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25548,7 +25548,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25574,7 +25574,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25600,7 +25600,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25626,7 +25626,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25652,7 +25652,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25678,7 +25678,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25704,7 +25704,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25730,7 +25730,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25756,7 +25756,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25782,7 +25782,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25808,7 +25808,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25834,7 +25834,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25860,7 +25860,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25886,7 +25886,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25912,7 +25912,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25938,7 +25938,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25964,7 +25964,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25990,7 +25990,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26016,7 +26016,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26042,7 +26042,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26068,7 +26068,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26094,7 +26094,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26120,7 +26120,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26146,7 +26146,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26172,7 +26172,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26198,7 +26198,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26224,7 +26224,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26250,7 +26250,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26276,7 +26276,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26302,7 +26302,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26328,7 +26328,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26354,7 +26354,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26380,7 +26380,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26406,7 +26406,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26432,7 +26432,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26458,7 +26458,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26484,7 +26484,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26510,7 +26510,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26536,7 +26536,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26562,7 +26562,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26588,7 +26588,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26614,7 +26614,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26640,7 +26640,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26666,7 +26666,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26692,7 +26692,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26718,7 +26718,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26744,7 +26744,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26770,7 +26770,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26796,7 +26796,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26822,7 +26822,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26848,7 +26848,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26874,7 +26874,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26900,7 +26900,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26926,7 +26926,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26952,7 +26952,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -26978,7 +26978,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27004,7 +27004,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27030,7 +27030,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27056,7 +27056,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27082,7 +27082,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27108,7 +27108,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27134,7 +27134,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27160,7 +27160,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27186,7 +27186,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27212,7 +27212,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27238,7 +27238,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27264,7 +27264,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27290,7 +27290,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27316,7 +27316,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27342,7 +27342,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27368,7 +27368,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27394,7 +27394,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27420,7 +27420,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27446,7 +27446,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27472,7 +27472,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27498,7 +27498,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27524,7 +27524,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27550,7 +27550,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27576,7 +27576,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27715,7 +27715,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 5.0, "wellLocation": { "offset": { @@ -27741,7 +27741,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 5.0, "wellLocation": { "offset": { @@ -27817,7 +27817,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 5.0, "wellLocation": { "offset": { @@ -27843,7 +27843,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 5.0, "wellLocation": { "offset": { @@ -27919,7 +27919,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 5.0, "wellLocation": { "offset": { @@ -27945,7 +27945,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 5.0, "wellLocation": { "offset": { @@ -28055,7 +28055,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28081,7 +28081,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28107,7 +28107,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28133,7 +28133,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28159,7 +28159,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28185,7 +28185,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28211,7 +28211,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28237,7 +28237,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28263,7 +28263,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28289,7 +28289,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28315,7 +28315,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28341,7 +28341,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28367,7 +28367,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28393,7 +28393,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28419,7 +28419,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28445,7 +28445,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28471,7 +28471,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28497,7 +28497,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28523,7 +28523,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28549,7 +28549,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28575,7 +28575,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28601,7 +28601,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28627,7 +28627,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28653,7 +28653,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28679,7 +28679,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28705,7 +28705,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28731,7 +28731,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28757,7 +28757,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28783,7 +28783,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28809,7 +28809,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28835,7 +28835,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28861,7 +28861,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28887,7 +28887,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28913,7 +28913,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28939,7 +28939,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28965,7 +28965,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28991,7 +28991,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29017,7 +29017,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29043,7 +29043,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29069,7 +29069,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29095,7 +29095,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29121,7 +29121,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29147,7 +29147,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29173,7 +29173,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29199,7 +29199,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29225,7 +29225,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29251,7 +29251,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29277,7 +29277,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29303,7 +29303,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29329,7 +29329,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29355,7 +29355,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29381,7 +29381,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29407,7 +29407,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29433,7 +29433,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29459,7 +29459,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29485,7 +29485,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29511,7 +29511,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29537,7 +29537,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29563,7 +29563,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29589,7 +29589,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29615,7 +29615,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29641,7 +29641,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29667,7 +29667,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29693,7 +29693,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29719,7 +29719,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29745,7 +29745,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29771,7 +29771,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29797,7 +29797,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29823,7 +29823,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29849,7 +29849,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29875,7 +29875,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29901,7 +29901,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29927,7 +29927,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29953,7 +29953,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -29979,7 +29979,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30005,7 +30005,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30031,7 +30031,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30057,7 +30057,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30083,7 +30083,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30109,7 +30109,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30135,7 +30135,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30161,7 +30161,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30187,7 +30187,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30213,7 +30213,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30239,7 +30239,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30265,7 +30265,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30291,7 +30291,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30317,7 +30317,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30343,7 +30343,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30369,7 +30369,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30395,7 +30395,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30421,7 +30421,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30447,7 +30447,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30473,7 +30473,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30499,7 +30499,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30525,7 +30525,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30551,7 +30551,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30577,7 +30577,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30603,7 +30603,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30629,7 +30629,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30762,7 +30762,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30788,7 +30788,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30814,7 +30814,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30840,7 +30840,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30866,7 +30866,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30892,7 +30892,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30918,7 +30918,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30944,7 +30944,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30970,7 +30970,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -30996,7 +30996,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31022,7 +31022,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31048,7 +31048,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31074,7 +31074,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31100,7 +31100,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31126,7 +31126,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31152,7 +31152,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31178,7 +31178,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31204,7 +31204,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31230,7 +31230,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31256,7 +31256,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31282,7 +31282,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31308,7 +31308,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31334,7 +31334,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31360,7 +31360,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31386,7 +31386,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31412,7 +31412,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31438,7 +31438,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31464,7 +31464,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31490,7 +31490,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31516,7 +31516,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31542,7 +31542,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31568,7 +31568,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31594,7 +31594,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31620,7 +31620,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31646,7 +31646,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31672,7 +31672,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31698,7 +31698,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31724,7 +31724,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31750,7 +31750,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31776,7 +31776,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31802,7 +31802,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31828,7 +31828,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31854,7 +31854,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31880,7 +31880,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31906,7 +31906,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31932,7 +31932,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31958,7 +31958,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31984,7 +31984,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32010,7 +32010,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32036,7 +32036,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32062,7 +32062,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32088,7 +32088,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32114,7 +32114,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32140,7 +32140,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32166,7 +32166,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32192,7 +32192,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32218,7 +32218,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32244,7 +32244,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32270,7 +32270,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32296,7 +32296,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32322,7 +32322,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32348,7 +32348,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32374,7 +32374,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32400,7 +32400,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32426,7 +32426,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32452,7 +32452,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32478,7 +32478,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32504,7 +32504,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32530,7 +32530,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32556,7 +32556,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32582,7 +32582,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32608,7 +32608,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32634,7 +32634,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32660,7 +32660,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32686,7 +32686,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32712,7 +32712,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32738,7 +32738,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32764,7 +32764,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32790,7 +32790,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32816,7 +32816,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32842,7 +32842,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32868,7 +32868,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32894,7 +32894,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32920,7 +32920,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32946,7 +32946,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32972,7 +32972,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -32998,7 +32998,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33024,7 +33024,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33050,7 +33050,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33076,7 +33076,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33102,7 +33102,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33128,7 +33128,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33154,7 +33154,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33180,7 +33180,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33206,7 +33206,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33232,7 +33232,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33258,7 +33258,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33284,7 +33284,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33310,7 +33310,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33336,7 +33336,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33469,7 +33469,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33495,7 +33495,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33521,7 +33521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33547,7 +33547,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33573,7 +33573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33599,7 +33599,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33625,7 +33625,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33651,7 +33651,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33677,7 +33677,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33703,7 +33703,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33729,7 +33729,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33755,7 +33755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33781,7 +33781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33807,7 +33807,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33833,7 +33833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33859,7 +33859,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33885,7 +33885,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33911,7 +33911,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33937,7 +33937,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33963,7 +33963,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33989,7 +33989,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34015,7 +34015,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34041,7 +34041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34067,7 +34067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34093,7 +34093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34119,7 +34119,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34145,7 +34145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34171,7 +34171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34197,7 +34197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34223,7 +34223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34249,7 +34249,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34275,7 +34275,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34301,7 +34301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34327,7 +34327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34353,7 +34353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34379,7 +34379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34405,7 +34405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34431,7 +34431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34457,7 +34457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34483,7 +34483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34509,7 +34509,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34535,7 +34535,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34561,7 +34561,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34587,7 +34587,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34613,7 +34613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34639,7 +34639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34665,7 +34665,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34691,7 +34691,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34717,7 +34717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34743,7 +34743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34769,7 +34769,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34795,7 +34795,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34821,7 +34821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34847,7 +34847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34873,7 +34873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34899,7 +34899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34925,7 +34925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34951,7 +34951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -34977,7 +34977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35003,7 +35003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35029,7 +35029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35055,7 +35055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35081,7 +35081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35107,7 +35107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35133,7 +35133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35159,7 +35159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35185,7 +35185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35211,7 +35211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35237,7 +35237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35263,7 +35263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35289,7 +35289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35315,7 +35315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35341,7 +35341,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35367,7 +35367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35393,7 +35393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35419,7 +35419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35445,7 +35445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35471,7 +35471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35497,7 +35497,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35523,7 +35523,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35549,7 +35549,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35575,7 +35575,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35601,7 +35601,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35627,7 +35627,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35653,7 +35653,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35679,7 +35679,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35705,7 +35705,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35731,7 +35731,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35757,7 +35757,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35783,7 +35783,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35809,7 +35809,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35835,7 +35835,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35861,7 +35861,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35887,7 +35887,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35913,7 +35913,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35939,7 +35939,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35965,7 +35965,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35991,7 +35991,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -36017,7 +36017,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -36043,7 +36043,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -36182,7 +36182,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36208,7 +36208,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36234,7 +36234,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36260,7 +36260,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36286,7 +36286,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36312,7 +36312,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36338,7 +36338,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36364,7 +36364,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36440,7 +36440,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36466,7 +36466,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36492,7 +36492,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36518,7 +36518,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36544,7 +36544,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36570,7 +36570,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36596,7 +36596,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36622,7 +36622,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -36728,7 +36728,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -36754,7 +36754,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -36863,7 +36863,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -36889,7 +36889,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37028,7 +37028,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37054,7 +37054,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37163,7 +37163,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37189,7 +37189,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37298,7 +37298,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37324,7 +37324,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37433,7 +37433,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37459,7 +37459,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37568,7 +37568,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37594,7 +37594,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37703,7 +37703,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37729,7 +37729,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -37892,7 +37892,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -37918,7 +37918,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -37944,7 +37944,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -37970,7 +37970,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -37996,7 +37996,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38022,7 +38022,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38048,7 +38048,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38074,7 +38074,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38100,7 +38100,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38126,7 +38126,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38152,7 +38152,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38178,7 +38178,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38204,7 +38204,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38230,7 +38230,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38256,7 +38256,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38282,7 +38282,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38308,7 +38308,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38334,7 +38334,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38360,7 +38360,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38386,7 +38386,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38412,7 +38412,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38438,7 +38438,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38464,7 +38464,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38490,7 +38490,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38516,7 +38516,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38542,7 +38542,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38568,7 +38568,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38594,7 +38594,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38620,7 +38620,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38646,7 +38646,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38672,7 +38672,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38698,7 +38698,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38724,7 +38724,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38750,7 +38750,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38776,7 +38776,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38802,7 +38802,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38828,7 +38828,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38854,7 +38854,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38880,7 +38880,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38906,7 +38906,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38932,7 +38932,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38958,7 +38958,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38984,7 +38984,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39010,7 +39010,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39036,7 +39036,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39062,7 +39062,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39088,7 +39088,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39114,7 +39114,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39140,7 +39140,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39166,7 +39166,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39192,7 +39192,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39218,7 +39218,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39244,7 +39244,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39270,7 +39270,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39296,7 +39296,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39322,7 +39322,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39348,7 +39348,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39374,7 +39374,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39400,7 +39400,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39426,7 +39426,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39452,7 +39452,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -39520,7 +39520,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -39588,7 +39588,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -39656,7 +39656,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -39724,7 +39724,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -39792,7 +39792,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -39860,7 +39860,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -39969,7 +39969,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -39995,7 +39995,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40021,7 +40021,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40047,7 +40047,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40073,7 +40073,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40099,7 +40099,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40125,7 +40125,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40151,7 +40151,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40177,7 +40177,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40203,7 +40203,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40229,7 +40229,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40255,7 +40255,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40281,7 +40281,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40307,7 +40307,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40333,7 +40333,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40359,7 +40359,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40385,7 +40385,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40411,7 +40411,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40437,7 +40437,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40463,7 +40463,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40489,7 +40489,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40515,7 +40515,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40541,7 +40541,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40567,7 +40567,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40593,7 +40593,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40619,7 +40619,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40645,7 +40645,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40671,7 +40671,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40697,7 +40697,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40723,7 +40723,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40749,7 +40749,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40775,7 +40775,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40801,7 +40801,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40827,7 +40827,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40853,7 +40853,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40879,7 +40879,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40905,7 +40905,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40931,7 +40931,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40957,7 +40957,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40983,7 +40983,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41009,7 +41009,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41035,7 +41035,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41061,7 +41061,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41087,7 +41087,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41113,7 +41113,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41139,7 +41139,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41165,7 +41165,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41191,7 +41191,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41217,7 +41217,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41243,7 +41243,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41269,7 +41269,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41295,7 +41295,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41321,7 +41321,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41347,7 +41347,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41373,7 +41373,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41399,7 +41399,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41425,7 +41425,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41451,7 +41451,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41477,7 +41477,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41503,7 +41503,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41529,7 +41529,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -41597,7 +41597,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -41665,7 +41665,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -41733,7 +41733,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -41801,7 +41801,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -41869,7 +41869,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -41937,7 +41937,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -42046,7 +42046,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42072,7 +42072,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42098,7 +42098,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42124,7 +42124,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42150,7 +42150,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42176,7 +42176,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42202,7 +42202,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42228,7 +42228,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42254,7 +42254,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42280,7 +42280,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42306,7 +42306,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42332,7 +42332,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42358,7 +42358,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42384,7 +42384,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42410,7 +42410,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42436,7 +42436,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42462,7 +42462,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42488,7 +42488,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42514,7 +42514,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42540,7 +42540,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42566,7 +42566,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42592,7 +42592,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42618,7 +42618,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42644,7 +42644,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42670,7 +42670,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42696,7 +42696,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42722,7 +42722,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42748,7 +42748,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42774,7 +42774,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42800,7 +42800,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42826,7 +42826,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42852,7 +42852,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42878,7 +42878,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42904,7 +42904,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42930,7 +42930,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42956,7 +42956,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -42982,7 +42982,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43008,7 +43008,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43034,7 +43034,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43060,7 +43060,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43086,7 +43086,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43112,7 +43112,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43138,7 +43138,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43164,7 +43164,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43190,7 +43190,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43216,7 +43216,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43242,7 +43242,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43268,7 +43268,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43294,7 +43294,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43320,7 +43320,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43346,7 +43346,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43372,7 +43372,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43398,7 +43398,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43424,7 +43424,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43450,7 +43450,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43476,7 +43476,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43502,7 +43502,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43528,7 +43528,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43554,7 +43554,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43580,7 +43580,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43606,7 +43606,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -43674,7 +43674,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -43742,7 +43742,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -43810,7 +43810,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -43878,7 +43878,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -43946,7 +43946,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -44014,7 +44014,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -44123,7 +44123,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44149,7 +44149,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44175,7 +44175,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44201,7 +44201,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44227,7 +44227,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44253,7 +44253,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44279,7 +44279,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44305,7 +44305,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44331,7 +44331,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44357,7 +44357,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44383,7 +44383,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44409,7 +44409,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44435,7 +44435,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44461,7 +44461,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44487,7 +44487,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44513,7 +44513,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44539,7 +44539,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44565,7 +44565,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44591,7 +44591,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44617,7 +44617,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44643,7 +44643,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44669,7 +44669,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44695,7 +44695,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44721,7 +44721,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44747,7 +44747,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44773,7 +44773,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44799,7 +44799,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44825,7 +44825,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44851,7 +44851,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44877,7 +44877,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44903,7 +44903,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44929,7 +44929,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44955,7 +44955,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44981,7 +44981,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45007,7 +45007,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45033,7 +45033,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45059,7 +45059,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45085,7 +45085,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45111,7 +45111,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45137,7 +45137,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45163,7 +45163,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45189,7 +45189,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45215,7 +45215,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45241,7 +45241,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45267,7 +45267,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45293,7 +45293,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45319,7 +45319,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45345,7 +45345,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45371,7 +45371,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45397,7 +45397,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45423,7 +45423,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45449,7 +45449,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45475,7 +45475,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45501,7 +45501,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45527,7 +45527,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45553,7 +45553,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45579,7 +45579,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45605,7 +45605,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45631,7 +45631,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45657,7 +45657,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45683,7 +45683,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -45751,7 +45751,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -45819,7 +45819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -45887,7 +45887,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -45955,7 +45955,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -46023,7 +46023,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -46091,7 +46091,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -46200,7 +46200,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46226,7 +46226,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46252,7 +46252,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46278,7 +46278,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46304,7 +46304,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46330,7 +46330,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46356,7 +46356,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46382,7 +46382,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46408,7 +46408,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46434,7 +46434,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46460,7 +46460,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46486,7 +46486,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46512,7 +46512,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46538,7 +46538,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46564,7 +46564,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46590,7 +46590,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46616,7 +46616,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46642,7 +46642,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46668,7 +46668,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46694,7 +46694,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46720,7 +46720,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46746,7 +46746,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46772,7 +46772,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46798,7 +46798,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46824,7 +46824,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46850,7 +46850,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46876,7 +46876,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46902,7 +46902,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46928,7 +46928,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46954,7 +46954,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46980,7 +46980,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47006,7 +47006,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47032,7 +47032,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47058,7 +47058,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47084,7 +47084,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47110,7 +47110,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47136,7 +47136,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47162,7 +47162,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47188,7 +47188,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47214,7 +47214,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47240,7 +47240,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47266,7 +47266,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47292,7 +47292,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47318,7 +47318,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47344,7 +47344,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47370,7 +47370,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47396,7 +47396,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47422,7 +47422,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47448,7 +47448,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47474,7 +47474,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47500,7 +47500,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47526,7 +47526,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47552,7 +47552,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47578,7 +47578,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47604,7 +47604,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47630,7 +47630,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47656,7 +47656,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47682,7 +47682,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47708,7 +47708,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47734,7 +47734,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47760,7 +47760,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -47828,7 +47828,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -47896,7 +47896,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -47964,7 +47964,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -48032,7 +48032,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -48100,7 +48100,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -48168,7 +48168,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -48277,7 +48277,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48303,7 +48303,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48329,7 +48329,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48355,7 +48355,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48381,7 +48381,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48407,7 +48407,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48433,7 +48433,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48459,7 +48459,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48485,7 +48485,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48511,7 +48511,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48537,7 +48537,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48563,7 +48563,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48589,7 +48589,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48615,7 +48615,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48641,7 +48641,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48667,7 +48667,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48693,7 +48693,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48719,7 +48719,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48745,7 +48745,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48771,7 +48771,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48797,7 +48797,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48823,7 +48823,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48849,7 +48849,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48875,7 +48875,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48901,7 +48901,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48927,7 +48927,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48953,7 +48953,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -48979,7 +48979,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49005,7 +49005,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49031,7 +49031,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49057,7 +49057,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49083,7 +49083,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49109,7 +49109,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49135,7 +49135,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49161,7 +49161,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49187,7 +49187,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49213,7 +49213,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49239,7 +49239,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49265,7 +49265,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49291,7 +49291,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49317,7 +49317,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49343,7 +49343,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49369,7 +49369,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49395,7 +49395,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49421,7 +49421,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49447,7 +49447,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49473,7 +49473,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49499,7 +49499,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49525,7 +49525,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49551,7 +49551,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49577,7 +49577,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49603,7 +49603,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49629,7 +49629,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49655,7 +49655,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49681,7 +49681,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49707,7 +49707,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49733,7 +49733,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49759,7 +49759,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49785,7 +49785,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49811,7 +49811,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -49837,7 +49837,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -49905,7 +49905,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -49973,7 +49973,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -50041,7 +50041,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -50109,7 +50109,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -50177,7 +50177,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -50245,7 +50245,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -50354,7 +50354,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50380,7 +50380,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50406,7 +50406,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50432,7 +50432,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50458,7 +50458,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50484,7 +50484,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50510,7 +50510,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50536,7 +50536,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50562,7 +50562,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50588,7 +50588,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50614,7 +50614,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50640,7 +50640,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50666,7 +50666,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50692,7 +50692,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50718,7 +50718,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50744,7 +50744,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50770,7 +50770,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50796,7 +50796,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50822,7 +50822,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50848,7 +50848,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50874,7 +50874,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50900,7 +50900,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50926,7 +50926,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50952,7 +50952,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -50978,7 +50978,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51004,7 +51004,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51030,7 +51030,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51056,7 +51056,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51082,7 +51082,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51108,7 +51108,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51134,7 +51134,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51160,7 +51160,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51186,7 +51186,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51212,7 +51212,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51238,7 +51238,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51264,7 +51264,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51290,7 +51290,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51316,7 +51316,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51342,7 +51342,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51368,7 +51368,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51394,7 +51394,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51420,7 +51420,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51446,7 +51446,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51472,7 +51472,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51498,7 +51498,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51524,7 +51524,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51550,7 +51550,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51576,7 +51576,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51602,7 +51602,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51628,7 +51628,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51654,7 +51654,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51680,7 +51680,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51706,7 +51706,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51732,7 +51732,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51758,7 +51758,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51784,7 +51784,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51810,7 +51810,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51836,7 +51836,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51862,7 +51862,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51888,7 +51888,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51914,7 +51914,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -51982,7 +51982,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -52050,7 +52050,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -52118,7 +52118,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -52186,7 +52186,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -52254,7 +52254,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -52322,7 +52322,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -52431,7 +52431,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52457,7 +52457,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52483,7 +52483,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52509,7 +52509,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52535,7 +52535,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52561,7 +52561,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52587,7 +52587,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52613,7 +52613,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52639,7 +52639,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52665,7 +52665,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52691,7 +52691,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52717,7 +52717,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52743,7 +52743,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52769,7 +52769,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52795,7 +52795,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52821,7 +52821,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52847,7 +52847,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52873,7 +52873,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52899,7 +52899,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52925,7 +52925,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52951,7 +52951,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -52977,7 +52977,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53003,7 +53003,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53029,7 +53029,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53055,7 +53055,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53081,7 +53081,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53107,7 +53107,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53133,7 +53133,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53159,7 +53159,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53185,7 +53185,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53211,7 +53211,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53237,7 +53237,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53263,7 +53263,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53289,7 +53289,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53315,7 +53315,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53341,7 +53341,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53367,7 +53367,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53393,7 +53393,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53419,7 +53419,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53445,7 +53445,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53471,7 +53471,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53497,7 +53497,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53523,7 +53523,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53549,7 +53549,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53575,7 +53575,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53601,7 +53601,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53627,7 +53627,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53653,7 +53653,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53679,7 +53679,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53705,7 +53705,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53731,7 +53731,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53757,7 +53757,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53783,7 +53783,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53809,7 +53809,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53835,7 +53835,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53861,7 +53861,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53887,7 +53887,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53913,7 +53913,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53939,7 +53939,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53965,7 +53965,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53991,7 +53991,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -54059,7 +54059,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -54127,7 +54127,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -54195,7 +54195,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -54263,7 +54263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -54331,7 +54331,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -54399,7 +54399,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -54514,7 +54514,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54540,7 +54540,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54566,7 +54566,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54592,7 +54592,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54618,7 +54618,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54644,7 +54644,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54670,7 +54670,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54696,7 +54696,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54772,7 +54772,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54798,7 +54798,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54824,7 +54824,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54850,7 +54850,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54876,7 +54876,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54902,7 +54902,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54928,7 +54928,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -54954,7 +54954,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -55060,7 +55060,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55086,7 +55086,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55195,7 +55195,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55221,7 +55221,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55360,7 +55360,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55386,7 +55386,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55495,7 +55495,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55521,7 +55521,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55630,7 +55630,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55656,7 +55656,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55765,7 +55765,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55791,7 +55791,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55900,7 +55900,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -55926,7 +55926,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -56035,7 +56035,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -56061,7 +56061,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -56224,7 +56224,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56250,7 +56250,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56276,7 +56276,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56302,7 +56302,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56328,7 +56328,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56354,7 +56354,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56380,7 +56380,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56406,7 +56406,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56432,7 +56432,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56458,7 +56458,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56484,7 +56484,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56510,7 +56510,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56536,7 +56536,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56562,7 +56562,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56588,7 +56588,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56614,7 +56614,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56640,7 +56640,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56666,7 +56666,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56692,7 +56692,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56718,7 +56718,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56744,7 +56744,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56770,7 +56770,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56796,7 +56796,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56822,7 +56822,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56848,7 +56848,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56874,7 +56874,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56900,7 +56900,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56926,7 +56926,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56952,7 +56952,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56978,7 +56978,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57004,7 +57004,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57030,7 +57030,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57056,7 +57056,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57082,7 +57082,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57108,7 +57108,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57134,7 +57134,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57160,7 +57160,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57186,7 +57186,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57212,7 +57212,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57238,7 +57238,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57264,7 +57264,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57290,7 +57290,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57316,7 +57316,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57342,7 +57342,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57368,7 +57368,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57394,7 +57394,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57420,7 +57420,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57446,7 +57446,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57472,7 +57472,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57498,7 +57498,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57524,7 +57524,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57550,7 +57550,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57576,7 +57576,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57602,7 +57602,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57628,7 +57628,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57654,7 +57654,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57680,7 +57680,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57706,7 +57706,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57732,7 +57732,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57758,7 +57758,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -57784,7 +57784,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -57852,7 +57852,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -57920,7 +57920,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -57988,7 +57988,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -58056,7 +58056,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -58124,7 +58124,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -58192,7 +58192,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -58301,7 +58301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58327,7 +58327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58353,7 +58353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58379,7 +58379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58405,7 +58405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58431,7 +58431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58457,7 +58457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58483,7 +58483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58509,7 +58509,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58535,7 +58535,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58561,7 +58561,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58587,7 +58587,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58613,7 +58613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58639,7 +58639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58665,7 +58665,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58691,7 +58691,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58717,7 +58717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58743,7 +58743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58769,7 +58769,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58795,7 +58795,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58821,7 +58821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58847,7 +58847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58873,7 +58873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58899,7 +58899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58925,7 +58925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58951,7 +58951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58977,7 +58977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59003,7 +59003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59029,7 +59029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59055,7 +59055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59081,7 +59081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59107,7 +59107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59133,7 +59133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59159,7 +59159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59185,7 +59185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59211,7 +59211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59237,7 +59237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59263,7 +59263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59289,7 +59289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59315,7 +59315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59341,7 +59341,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59367,7 +59367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59393,7 +59393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59419,7 +59419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59445,7 +59445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59471,7 +59471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59497,7 +59497,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59523,7 +59523,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59549,7 +59549,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59575,7 +59575,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59601,7 +59601,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59627,7 +59627,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59653,7 +59653,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59679,7 +59679,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59705,7 +59705,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59731,7 +59731,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59757,7 +59757,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59783,7 +59783,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59809,7 +59809,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59835,7 +59835,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59861,7 +59861,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -59929,7 +59929,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -59997,7 +59997,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -60065,7 +60065,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -60133,7 +60133,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -60201,7 +60201,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -60269,7 +60269,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -60378,7 +60378,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60404,7 +60404,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60430,7 +60430,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60456,7 +60456,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60482,7 +60482,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60508,7 +60508,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60534,7 +60534,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60560,7 +60560,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60586,7 +60586,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60612,7 +60612,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60638,7 +60638,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60664,7 +60664,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60690,7 +60690,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60716,7 +60716,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60742,7 +60742,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60768,7 +60768,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60794,7 +60794,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60820,7 +60820,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60846,7 +60846,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60872,7 +60872,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60898,7 +60898,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60924,7 +60924,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60950,7 +60950,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60976,7 +60976,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61002,7 +61002,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61028,7 +61028,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61054,7 +61054,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61080,7 +61080,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61106,7 +61106,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61132,7 +61132,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61158,7 +61158,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61184,7 +61184,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61210,7 +61210,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61236,7 +61236,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61262,7 +61262,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61288,7 +61288,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61314,7 +61314,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61340,7 +61340,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61366,7 +61366,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61392,7 +61392,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61418,7 +61418,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61444,7 +61444,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61470,7 +61470,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61496,7 +61496,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61522,7 +61522,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61548,7 +61548,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61574,7 +61574,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61600,7 +61600,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61626,7 +61626,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61652,7 +61652,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61678,7 +61678,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61704,7 +61704,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61730,7 +61730,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61756,7 +61756,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61782,7 +61782,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61808,7 +61808,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61834,7 +61834,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61860,7 +61860,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61886,7 +61886,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61912,7 +61912,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -61938,7 +61938,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -62006,7 +62006,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -62074,7 +62074,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -62142,7 +62142,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -62210,7 +62210,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -62278,7 +62278,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -62346,7 +62346,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -62455,7 +62455,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62481,7 +62481,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62507,7 +62507,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62533,7 +62533,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62559,7 +62559,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62585,7 +62585,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62611,7 +62611,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62637,7 +62637,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62663,7 +62663,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62689,7 +62689,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62715,7 +62715,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62741,7 +62741,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62767,7 +62767,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62793,7 +62793,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62819,7 +62819,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62845,7 +62845,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62871,7 +62871,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62897,7 +62897,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62923,7 +62923,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62949,7 +62949,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62975,7 +62975,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63001,7 +63001,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63027,7 +63027,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63053,7 +63053,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63079,7 +63079,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63105,7 +63105,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63131,7 +63131,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63157,7 +63157,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63183,7 +63183,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63209,7 +63209,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63235,7 +63235,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63261,7 +63261,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63287,7 +63287,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63313,7 +63313,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63339,7 +63339,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63365,7 +63365,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63391,7 +63391,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63417,7 +63417,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63443,7 +63443,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63469,7 +63469,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63495,7 +63495,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63521,7 +63521,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63547,7 +63547,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63573,7 +63573,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63599,7 +63599,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63625,7 +63625,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63651,7 +63651,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63677,7 +63677,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63703,7 +63703,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63729,7 +63729,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63755,7 +63755,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63781,7 +63781,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63807,7 +63807,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63833,7 +63833,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63859,7 +63859,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63885,7 +63885,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63911,7 +63911,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63937,7 +63937,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63963,7 +63963,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -63989,7 +63989,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64015,7 +64015,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -64083,7 +64083,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -64151,7 +64151,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -64219,7 +64219,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -64287,7 +64287,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -64355,7 +64355,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -64423,7 +64423,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -64532,7 +64532,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64558,7 +64558,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64584,7 +64584,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64610,7 +64610,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64636,7 +64636,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64662,7 +64662,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64688,7 +64688,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64714,7 +64714,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64740,7 +64740,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64766,7 +64766,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64792,7 +64792,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64818,7 +64818,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64844,7 +64844,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64870,7 +64870,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64896,7 +64896,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64922,7 +64922,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64948,7 +64948,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -64974,7 +64974,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65000,7 +65000,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65026,7 +65026,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65052,7 +65052,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65078,7 +65078,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65104,7 +65104,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65130,7 +65130,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65156,7 +65156,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65182,7 +65182,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65208,7 +65208,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65234,7 +65234,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65260,7 +65260,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65286,7 +65286,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65312,7 +65312,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65338,7 +65338,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65364,7 +65364,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65390,7 +65390,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65416,7 +65416,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65442,7 +65442,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65468,7 +65468,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65494,7 +65494,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65520,7 +65520,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65546,7 +65546,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65572,7 +65572,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65598,7 +65598,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65624,7 +65624,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65650,7 +65650,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65676,7 +65676,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65702,7 +65702,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65728,7 +65728,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65754,7 +65754,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65780,7 +65780,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65806,7 +65806,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65832,7 +65832,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65858,7 +65858,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65884,7 +65884,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65910,7 +65910,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65936,7 +65936,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65962,7 +65962,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -65988,7 +65988,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66014,7 +66014,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66040,7 +66040,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66066,7 +66066,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66092,7 +66092,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -66160,7 +66160,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -66228,7 +66228,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -66296,7 +66296,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -66364,7 +66364,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -66432,7 +66432,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -66500,7 +66500,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -66609,7 +66609,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66635,7 +66635,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66661,7 +66661,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66687,7 +66687,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66713,7 +66713,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66739,7 +66739,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66765,7 +66765,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66791,7 +66791,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66817,7 +66817,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66843,7 +66843,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66869,7 +66869,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66895,7 +66895,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66921,7 +66921,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66947,7 +66947,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66973,7 +66973,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66999,7 +66999,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67025,7 +67025,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67051,7 +67051,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67077,7 +67077,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67103,7 +67103,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67129,7 +67129,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67155,7 +67155,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67181,7 +67181,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67207,7 +67207,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67233,7 +67233,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67259,7 +67259,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67285,7 +67285,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67311,7 +67311,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67337,7 +67337,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67363,7 +67363,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67389,7 +67389,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67415,7 +67415,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67441,7 +67441,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67467,7 +67467,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67493,7 +67493,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67519,7 +67519,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67545,7 +67545,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67571,7 +67571,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67597,7 +67597,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67623,7 +67623,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67649,7 +67649,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67675,7 +67675,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67701,7 +67701,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67727,7 +67727,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67753,7 +67753,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67779,7 +67779,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67805,7 +67805,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67831,7 +67831,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67857,7 +67857,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67883,7 +67883,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67909,7 +67909,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67935,7 +67935,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67961,7 +67961,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67987,7 +67987,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68013,7 +68013,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68039,7 +68039,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68065,7 +68065,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68091,7 +68091,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68117,7 +68117,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68143,7 +68143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68169,7 +68169,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -68237,7 +68237,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -68305,7 +68305,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -68373,7 +68373,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -68441,7 +68441,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -68509,7 +68509,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -68577,7 +68577,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -68686,7 +68686,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68712,7 +68712,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68738,7 +68738,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68764,7 +68764,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68790,7 +68790,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68816,7 +68816,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68842,7 +68842,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68868,7 +68868,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68894,7 +68894,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68920,7 +68920,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68946,7 +68946,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68972,7 +68972,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68998,7 +68998,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69024,7 +69024,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69050,7 +69050,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69076,7 +69076,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69102,7 +69102,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69128,7 +69128,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69154,7 +69154,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69180,7 +69180,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69206,7 +69206,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69232,7 +69232,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69258,7 +69258,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69284,7 +69284,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69310,7 +69310,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69336,7 +69336,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69362,7 +69362,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69388,7 +69388,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69414,7 +69414,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69440,7 +69440,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69466,7 +69466,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69492,7 +69492,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69518,7 +69518,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69544,7 +69544,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69570,7 +69570,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69596,7 +69596,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69622,7 +69622,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69648,7 +69648,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69674,7 +69674,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69700,7 +69700,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69726,7 +69726,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69752,7 +69752,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69778,7 +69778,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69804,7 +69804,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69830,7 +69830,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69856,7 +69856,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69882,7 +69882,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69908,7 +69908,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69934,7 +69934,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69960,7 +69960,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69986,7 +69986,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70012,7 +70012,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70038,7 +70038,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70064,7 +70064,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70090,7 +70090,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70116,7 +70116,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70142,7 +70142,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70168,7 +70168,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70194,7 +70194,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70220,7 +70220,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70246,7 +70246,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -70314,7 +70314,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -70382,7 +70382,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -70450,7 +70450,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -70518,7 +70518,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -70586,7 +70586,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -70654,7 +70654,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -70763,7 +70763,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70789,7 +70789,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70815,7 +70815,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70841,7 +70841,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70867,7 +70867,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70893,7 +70893,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70919,7 +70919,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70945,7 +70945,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70971,7 +70971,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70997,7 +70997,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71023,7 +71023,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71049,7 +71049,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71075,7 +71075,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71101,7 +71101,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71127,7 +71127,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71153,7 +71153,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71179,7 +71179,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71205,7 +71205,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71231,7 +71231,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71257,7 +71257,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71283,7 +71283,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71309,7 +71309,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71335,7 +71335,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71361,7 +71361,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71387,7 +71387,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71413,7 +71413,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71439,7 +71439,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71465,7 +71465,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71491,7 +71491,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71517,7 +71517,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71543,7 +71543,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71569,7 +71569,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71595,7 +71595,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71621,7 +71621,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71647,7 +71647,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71673,7 +71673,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71699,7 +71699,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71725,7 +71725,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71751,7 +71751,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71777,7 +71777,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71803,7 +71803,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71829,7 +71829,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71855,7 +71855,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71881,7 +71881,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71907,7 +71907,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71933,7 +71933,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71959,7 +71959,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71985,7 +71985,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72011,7 +72011,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72037,7 +72037,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72063,7 +72063,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72089,7 +72089,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72115,7 +72115,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72141,7 +72141,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72167,7 +72167,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72193,7 +72193,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72219,7 +72219,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72245,7 +72245,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72271,7 +72271,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72297,7 +72297,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72323,7 +72323,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -72391,7 +72391,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -72459,7 +72459,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -72527,7 +72527,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -72595,7 +72595,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -72663,7 +72663,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -72731,7 +72731,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -72846,7 +72846,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -72872,7 +72872,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -72898,7 +72898,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -72924,7 +72924,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -72950,7 +72950,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -72976,7 +72976,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73002,7 +73002,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73028,7 +73028,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73104,7 +73104,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73130,7 +73130,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73156,7 +73156,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73182,7 +73182,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73208,7 +73208,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73234,7 +73234,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73260,7 +73260,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73286,7 +73286,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -73392,7 +73392,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -73418,7 +73418,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -73527,7 +73527,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -73553,7 +73553,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -73692,7 +73692,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -73718,7 +73718,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -73827,7 +73827,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -73853,7 +73853,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -73962,7 +73962,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -73988,7 +73988,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -74097,7 +74097,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -74123,7 +74123,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -74232,7 +74232,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -74258,7 +74258,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -74367,7 +74367,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -74393,7 +74393,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -74556,7 +74556,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74582,7 +74582,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74608,7 +74608,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74634,7 +74634,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74660,7 +74660,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74686,7 +74686,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74712,7 +74712,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74738,7 +74738,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74764,7 +74764,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74790,7 +74790,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74816,7 +74816,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74842,7 +74842,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74868,7 +74868,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74894,7 +74894,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74920,7 +74920,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74946,7 +74946,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74972,7 +74972,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74998,7 +74998,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75024,7 +75024,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75050,7 +75050,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75076,7 +75076,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75102,7 +75102,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75128,7 +75128,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75154,7 +75154,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75180,7 +75180,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75206,7 +75206,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75232,7 +75232,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75258,7 +75258,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75284,7 +75284,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75310,7 +75310,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75336,7 +75336,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75362,7 +75362,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75388,7 +75388,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75414,7 +75414,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75440,7 +75440,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75466,7 +75466,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75492,7 +75492,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75518,7 +75518,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75544,7 +75544,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75570,7 +75570,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75596,7 +75596,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75622,7 +75622,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75648,7 +75648,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75674,7 +75674,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75700,7 +75700,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75726,7 +75726,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75752,7 +75752,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75778,7 +75778,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75804,7 +75804,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75830,7 +75830,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75856,7 +75856,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75882,7 +75882,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75908,7 +75908,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75934,7 +75934,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75960,7 +75960,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75986,7 +75986,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76012,7 +76012,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76038,7 +76038,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76064,7 +76064,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76090,7 +76090,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76116,7 +76116,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -76184,7 +76184,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -76252,7 +76252,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -76320,7 +76320,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -76388,7 +76388,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -76456,7 +76456,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -76524,7 +76524,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -76633,7 +76633,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76659,7 +76659,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76685,7 +76685,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76711,7 +76711,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76737,7 +76737,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76763,7 +76763,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76789,7 +76789,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76815,7 +76815,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76841,7 +76841,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76867,7 +76867,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76893,7 +76893,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76919,7 +76919,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76945,7 +76945,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76971,7 +76971,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -76997,7 +76997,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77023,7 +77023,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77049,7 +77049,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77075,7 +77075,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77101,7 +77101,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77127,7 +77127,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77153,7 +77153,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77179,7 +77179,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77205,7 +77205,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77231,7 +77231,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77257,7 +77257,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77283,7 +77283,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77309,7 +77309,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77335,7 +77335,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77361,7 +77361,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77387,7 +77387,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77413,7 +77413,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77439,7 +77439,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77465,7 +77465,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77491,7 +77491,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77517,7 +77517,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77543,7 +77543,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77569,7 +77569,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77595,7 +77595,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77621,7 +77621,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77647,7 +77647,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77673,7 +77673,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77699,7 +77699,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77725,7 +77725,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77751,7 +77751,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77777,7 +77777,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77803,7 +77803,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77829,7 +77829,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77855,7 +77855,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77881,7 +77881,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77907,7 +77907,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77933,7 +77933,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77959,7 +77959,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77985,7 +77985,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78011,7 +78011,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78037,7 +78037,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78063,7 +78063,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78089,7 +78089,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78115,7 +78115,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78141,7 +78141,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78167,7 +78167,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78193,7 +78193,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -78261,7 +78261,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -78329,7 +78329,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -78397,7 +78397,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -78465,7 +78465,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -78533,7 +78533,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -78601,7 +78601,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -78710,7 +78710,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78736,7 +78736,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78762,7 +78762,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78788,7 +78788,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78814,7 +78814,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78840,7 +78840,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78866,7 +78866,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78892,7 +78892,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78918,7 +78918,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78944,7 +78944,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78970,7 +78970,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -78996,7 +78996,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79022,7 +79022,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79048,7 +79048,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79074,7 +79074,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79100,7 +79100,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79126,7 +79126,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79152,7 +79152,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79178,7 +79178,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79204,7 +79204,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79230,7 +79230,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79256,7 +79256,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79282,7 +79282,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79308,7 +79308,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79334,7 +79334,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79360,7 +79360,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79386,7 +79386,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79412,7 +79412,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79438,7 +79438,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79464,7 +79464,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79490,7 +79490,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79516,7 +79516,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79542,7 +79542,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79568,7 +79568,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79594,7 +79594,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79620,7 +79620,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79646,7 +79646,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79672,7 +79672,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79698,7 +79698,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79724,7 +79724,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79750,7 +79750,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79776,7 +79776,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79802,7 +79802,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79828,7 +79828,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79854,7 +79854,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79880,7 +79880,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79906,7 +79906,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79932,7 +79932,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79958,7 +79958,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -79984,7 +79984,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80010,7 +80010,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80036,7 +80036,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80062,7 +80062,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80088,7 +80088,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80114,7 +80114,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80140,7 +80140,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80166,7 +80166,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80192,7 +80192,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80218,7 +80218,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80244,7 +80244,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80270,7 +80270,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -80338,7 +80338,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -80406,7 +80406,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -80474,7 +80474,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -80542,7 +80542,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -80610,7 +80610,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -80678,7 +80678,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -80787,7 +80787,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80813,7 +80813,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80839,7 +80839,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80865,7 +80865,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80891,7 +80891,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80917,7 +80917,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80943,7 +80943,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80969,7 +80969,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80995,7 +80995,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81021,7 +81021,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81047,7 +81047,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81073,7 +81073,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81099,7 +81099,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81125,7 +81125,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81151,7 +81151,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81177,7 +81177,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81203,7 +81203,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81229,7 +81229,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81255,7 +81255,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81281,7 +81281,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81307,7 +81307,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81333,7 +81333,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81359,7 +81359,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81385,7 +81385,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81411,7 +81411,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81437,7 +81437,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81463,7 +81463,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81489,7 +81489,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81515,7 +81515,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81541,7 +81541,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81567,7 +81567,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81593,7 +81593,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81619,7 +81619,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81645,7 +81645,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81671,7 +81671,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81697,7 +81697,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81723,7 +81723,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81749,7 +81749,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81775,7 +81775,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81801,7 +81801,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81827,7 +81827,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81853,7 +81853,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81879,7 +81879,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81905,7 +81905,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81931,7 +81931,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81957,7 +81957,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81983,7 +81983,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82009,7 +82009,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82035,7 +82035,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82061,7 +82061,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82087,7 +82087,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82113,7 +82113,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82139,7 +82139,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82165,7 +82165,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82191,7 +82191,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82217,7 +82217,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82243,7 +82243,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82269,7 +82269,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82295,7 +82295,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82321,7 +82321,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82347,7 +82347,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -82415,7 +82415,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -82483,7 +82483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -82551,7 +82551,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -82619,7 +82619,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -82687,7 +82687,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -82755,7 +82755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -82864,7 +82864,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82890,7 +82890,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82916,7 +82916,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82942,7 +82942,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82968,7 +82968,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82994,7 +82994,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83020,7 +83020,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83046,7 +83046,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83072,7 +83072,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83098,7 +83098,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83124,7 +83124,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83150,7 +83150,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83176,7 +83176,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83202,7 +83202,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83228,7 +83228,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83254,7 +83254,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83280,7 +83280,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83306,7 +83306,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83332,7 +83332,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83358,7 +83358,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83384,7 +83384,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83410,7 +83410,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83436,7 +83436,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83462,7 +83462,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83488,7 +83488,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83514,7 +83514,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83540,7 +83540,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83566,7 +83566,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83592,7 +83592,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83618,7 +83618,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83644,7 +83644,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83670,7 +83670,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83696,7 +83696,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83722,7 +83722,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83748,7 +83748,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83774,7 +83774,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83800,7 +83800,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83826,7 +83826,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83852,7 +83852,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83878,7 +83878,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83904,7 +83904,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83930,7 +83930,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83956,7 +83956,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -83982,7 +83982,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84008,7 +84008,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84034,7 +84034,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84060,7 +84060,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84086,7 +84086,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84112,7 +84112,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84138,7 +84138,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84164,7 +84164,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84190,7 +84190,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84216,7 +84216,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84242,7 +84242,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84268,7 +84268,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84294,7 +84294,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84320,7 +84320,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84346,7 +84346,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84372,7 +84372,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84398,7 +84398,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84424,7 +84424,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -84492,7 +84492,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -84560,7 +84560,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -84628,7 +84628,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -84696,7 +84696,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -84764,7 +84764,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -84832,7 +84832,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -84941,7 +84941,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84967,7 +84967,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84993,7 +84993,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85019,7 +85019,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85045,7 +85045,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85071,7 +85071,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85097,7 +85097,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85123,7 +85123,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85149,7 +85149,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85175,7 +85175,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85201,7 +85201,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85227,7 +85227,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85253,7 +85253,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85279,7 +85279,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85305,7 +85305,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85331,7 +85331,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85357,7 +85357,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85383,7 +85383,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85409,7 +85409,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85435,7 +85435,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85461,7 +85461,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85487,7 +85487,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85513,7 +85513,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85539,7 +85539,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85565,7 +85565,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85591,7 +85591,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85617,7 +85617,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85643,7 +85643,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85669,7 +85669,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85695,7 +85695,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85721,7 +85721,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85747,7 +85747,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85773,7 +85773,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85799,7 +85799,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85825,7 +85825,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85851,7 +85851,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85877,7 +85877,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85903,7 +85903,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85929,7 +85929,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85955,7 +85955,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85981,7 +85981,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86007,7 +86007,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86033,7 +86033,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86059,7 +86059,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86085,7 +86085,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86111,7 +86111,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86137,7 +86137,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86163,7 +86163,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86189,7 +86189,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86215,7 +86215,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86241,7 +86241,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86267,7 +86267,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86293,7 +86293,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86319,7 +86319,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86345,7 +86345,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86371,7 +86371,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86397,7 +86397,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86423,7 +86423,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86449,7 +86449,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86475,7 +86475,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -86501,7 +86501,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -86569,7 +86569,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -86637,7 +86637,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -86705,7 +86705,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -86773,7 +86773,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -86841,7 +86841,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -86909,7 +86909,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -87018,7 +87018,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87044,7 +87044,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87070,7 +87070,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87096,7 +87096,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87122,7 +87122,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87148,7 +87148,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87174,7 +87174,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87200,7 +87200,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87226,7 +87226,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87252,7 +87252,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87278,7 +87278,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87304,7 +87304,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87330,7 +87330,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87356,7 +87356,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87382,7 +87382,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87408,7 +87408,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87434,7 +87434,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87460,7 +87460,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87486,7 +87486,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87512,7 +87512,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87538,7 +87538,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87564,7 +87564,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87590,7 +87590,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87616,7 +87616,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87642,7 +87642,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87668,7 +87668,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87694,7 +87694,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87720,7 +87720,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87746,7 +87746,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87772,7 +87772,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87798,7 +87798,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87824,7 +87824,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87850,7 +87850,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87876,7 +87876,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87902,7 +87902,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87928,7 +87928,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87954,7 +87954,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87980,7 +87980,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88006,7 +88006,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88032,7 +88032,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88058,7 +88058,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88084,7 +88084,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88110,7 +88110,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88136,7 +88136,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88162,7 +88162,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88188,7 +88188,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88214,7 +88214,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88240,7 +88240,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88266,7 +88266,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88292,7 +88292,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88318,7 +88318,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88344,7 +88344,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88370,7 +88370,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88396,7 +88396,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88422,7 +88422,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88448,7 +88448,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88474,7 +88474,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88500,7 +88500,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88526,7 +88526,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88552,7 +88552,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88578,7 +88578,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -88646,7 +88646,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -88714,7 +88714,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -88782,7 +88782,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -88850,7 +88850,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -88918,7 +88918,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -88986,7 +88986,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -89095,7 +89095,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89121,7 +89121,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89147,7 +89147,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89173,7 +89173,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89199,7 +89199,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89225,7 +89225,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89251,7 +89251,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89277,7 +89277,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89303,7 +89303,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89329,7 +89329,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89355,7 +89355,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89381,7 +89381,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89407,7 +89407,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89433,7 +89433,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89459,7 +89459,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89485,7 +89485,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89511,7 +89511,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89537,7 +89537,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89563,7 +89563,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89589,7 +89589,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89615,7 +89615,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89641,7 +89641,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89667,7 +89667,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89693,7 +89693,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89719,7 +89719,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89745,7 +89745,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89771,7 +89771,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89797,7 +89797,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89823,7 +89823,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89849,7 +89849,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89875,7 +89875,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89901,7 +89901,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89927,7 +89927,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89953,7 +89953,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89979,7 +89979,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90005,7 +90005,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90031,7 +90031,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90057,7 +90057,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90083,7 +90083,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90109,7 +90109,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90135,7 +90135,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90161,7 +90161,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90187,7 +90187,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90213,7 +90213,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90239,7 +90239,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90265,7 +90265,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90291,7 +90291,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90317,7 +90317,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90343,7 +90343,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90369,7 +90369,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90395,7 +90395,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90421,7 +90421,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90447,7 +90447,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90473,7 +90473,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90499,7 +90499,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90525,7 +90525,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90551,7 +90551,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90577,7 +90577,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90603,7 +90603,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90629,7 +90629,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90655,7 +90655,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -90723,7 +90723,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -90791,7 +90791,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -90859,7 +90859,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -90927,7 +90927,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -90995,7 +90995,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -91063,7 +91063,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -91178,7 +91178,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91204,7 +91204,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91230,7 +91230,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91256,7 +91256,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91282,7 +91282,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91308,7 +91308,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91334,7 +91334,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91360,7 +91360,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91436,7 +91436,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91462,7 +91462,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91488,7 +91488,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91514,7 +91514,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91540,7 +91540,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91566,7 +91566,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91592,7 +91592,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91618,7 +91618,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -91724,7 +91724,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -91750,7 +91750,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -91859,7 +91859,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -91885,7 +91885,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92024,7 +92024,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92050,7 +92050,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92159,7 +92159,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92185,7 +92185,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92294,7 +92294,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92320,7 +92320,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92429,7 +92429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92455,7 +92455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92564,7 +92564,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92590,7 +92590,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92699,7 +92699,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92725,7 +92725,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -92888,7 +92888,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -92914,7 +92914,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -92940,7 +92940,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -92966,7 +92966,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -92992,7 +92992,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93018,7 +93018,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93044,7 +93044,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93070,7 +93070,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93096,7 +93096,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93122,7 +93122,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93148,7 +93148,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93174,7 +93174,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93200,7 +93200,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93226,7 +93226,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93252,7 +93252,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93278,7 +93278,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93304,7 +93304,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93330,7 +93330,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93356,7 +93356,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93382,7 +93382,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93408,7 +93408,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93434,7 +93434,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93460,7 +93460,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93486,7 +93486,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93512,7 +93512,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93538,7 +93538,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93564,7 +93564,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93590,7 +93590,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93616,7 +93616,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93642,7 +93642,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93668,7 +93668,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93694,7 +93694,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93720,7 +93720,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93746,7 +93746,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93772,7 +93772,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93798,7 +93798,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93824,7 +93824,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93850,7 +93850,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93876,7 +93876,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93902,7 +93902,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93928,7 +93928,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93954,7 +93954,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -93980,7 +93980,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94006,7 +94006,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94032,7 +94032,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94058,7 +94058,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94084,7 +94084,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94110,7 +94110,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94136,7 +94136,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94162,7 +94162,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94188,7 +94188,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94214,7 +94214,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94240,7 +94240,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94266,7 +94266,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94292,7 +94292,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94318,7 +94318,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94344,7 +94344,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94370,7 +94370,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94396,7 +94396,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94422,7 +94422,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94448,7 +94448,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -94516,7 +94516,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -94584,7 +94584,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -94652,7 +94652,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -94720,7 +94720,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -94788,7 +94788,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -94856,7 +94856,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -94965,7 +94965,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -94991,7 +94991,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95017,7 +95017,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95043,7 +95043,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95069,7 +95069,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95095,7 +95095,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95121,7 +95121,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95147,7 +95147,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95173,7 +95173,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95199,7 +95199,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95225,7 +95225,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95251,7 +95251,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95277,7 +95277,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95303,7 +95303,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95329,7 +95329,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95355,7 +95355,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95381,7 +95381,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95407,7 +95407,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95433,7 +95433,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95459,7 +95459,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95485,7 +95485,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95511,7 +95511,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95537,7 +95537,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95563,7 +95563,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95589,7 +95589,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95615,7 +95615,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95641,7 +95641,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95667,7 +95667,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95693,7 +95693,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95719,7 +95719,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95745,7 +95745,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95771,7 +95771,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95797,7 +95797,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95823,7 +95823,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95849,7 +95849,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95875,7 +95875,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95901,7 +95901,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95927,7 +95927,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95953,7 +95953,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95979,7 +95979,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96005,7 +96005,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96031,7 +96031,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96057,7 +96057,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96083,7 +96083,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96109,7 +96109,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96135,7 +96135,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96161,7 +96161,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96187,7 +96187,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96213,7 +96213,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96239,7 +96239,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96265,7 +96265,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96291,7 +96291,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96317,7 +96317,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96343,7 +96343,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96369,7 +96369,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96395,7 +96395,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96421,7 +96421,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96447,7 +96447,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96473,7 +96473,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96499,7 +96499,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -96525,7 +96525,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -96593,7 +96593,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -96661,7 +96661,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -96729,7 +96729,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -96797,7 +96797,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -96865,7 +96865,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -96933,7 +96933,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -97042,7 +97042,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97068,7 +97068,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97094,7 +97094,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97120,7 +97120,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97146,7 +97146,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97172,7 +97172,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97198,7 +97198,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97224,7 +97224,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97250,7 +97250,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97276,7 +97276,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97302,7 +97302,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97328,7 +97328,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97354,7 +97354,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97380,7 +97380,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97406,7 +97406,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97432,7 +97432,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97458,7 +97458,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97484,7 +97484,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97510,7 +97510,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97536,7 +97536,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97562,7 +97562,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97588,7 +97588,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97614,7 +97614,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97640,7 +97640,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97666,7 +97666,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97692,7 +97692,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97718,7 +97718,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97744,7 +97744,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97770,7 +97770,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97796,7 +97796,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97822,7 +97822,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97848,7 +97848,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97874,7 +97874,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97900,7 +97900,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97926,7 +97926,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97952,7 +97952,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97978,7 +97978,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98004,7 +98004,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98030,7 +98030,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98056,7 +98056,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98082,7 +98082,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98108,7 +98108,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98134,7 +98134,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98160,7 +98160,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98186,7 +98186,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98212,7 +98212,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98238,7 +98238,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98264,7 +98264,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98290,7 +98290,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98316,7 +98316,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98342,7 +98342,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98368,7 +98368,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98394,7 +98394,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98420,7 +98420,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98446,7 +98446,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98472,7 +98472,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98498,7 +98498,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98524,7 +98524,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98550,7 +98550,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98576,7 +98576,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98602,7 +98602,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -98670,7 +98670,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -98738,7 +98738,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -98806,7 +98806,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -98874,7 +98874,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -98942,7 +98942,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -99010,7 +99010,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -99119,7 +99119,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99145,7 +99145,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99171,7 +99171,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99197,7 +99197,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99223,7 +99223,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99249,7 +99249,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99275,7 +99275,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99301,7 +99301,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99327,7 +99327,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99353,7 +99353,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99379,7 +99379,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99405,7 +99405,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99431,7 +99431,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99457,7 +99457,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99483,7 +99483,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99509,7 +99509,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99535,7 +99535,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99561,7 +99561,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99587,7 +99587,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99613,7 +99613,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99639,7 +99639,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99665,7 +99665,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99691,7 +99691,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99717,7 +99717,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99743,7 +99743,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99769,7 +99769,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99795,7 +99795,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99821,7 +99821,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99847,7 +99847,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99873,7 +99873,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99899,7 +99899,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99925,7 +99925,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99951,7 +99951,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99977,7 +99977,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100003,7 +100003,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100029,7 +100029,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100055,7 +100055,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100081,7 +100081,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100107,7 +100107,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100133,7 +100133,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100159,7 +100159,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100185,7 +100185,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100211,7 +100211,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100237,7 +100237,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100263,7 +100263,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100289,7 +100289,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100315,7 +100315,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100341,7 +100341,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100367,7 +100367,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100393,7 +100393,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100419,7 +100419,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100445,7 +100445,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100471,7 +100471,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100497,7 +100497,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100523,7 +100523,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100549,7 +100549,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100575,7 +100575,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100601,7 +100601,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100627,7 +100627,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100653,7 +100653,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -100679,7 +100679,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -100747,7 +100747,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -100815,7 +100815,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -100883,7 +100883,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -100951,7 +100951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -101019,7 +101019,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -101087,7 +101087,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -101196,7 +101196,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101222,7 +101222,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101248,7 +101248,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101274,7 +101274,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101300,7 +101300,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101326,7 +101326,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101352,7 +101352,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101378,7 +101378,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101404,7 +101404,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101430,7 +101430,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101456,7 +101456,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101482,7 +101482,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101508,7 +101508,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101534,7 +101534,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101560,7 +101560,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101586,7 +101586,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101612,7 +101612,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101638,7 +101638,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101664,7 +101664,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101690,7 +101690,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101716,7 +101716,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101742,7 +101742,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101768,7 +101768,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101794,7 +101794,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101820,7 +101820,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101846,7 +101846,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101872,7 +101872,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101898,7 +101898,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101924,7 +101924,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101950,7 +101950,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -101976,7 +101976,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102002,7 +102002,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102028,7 +102028,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102054,7 +102054,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102080,7 +102080,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102106,7 +102106,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102132,7 +102132,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102158,7 +102158,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102184,7 +102184,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102210,7 +102210,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102236,7 +102236,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102262,7 +102262,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102288,7 +102288,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102314,7 +102314,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102340,7 +102340,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102366,7 +102366,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102392,7 +102392,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102418,7 +102418,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102444,7 +102444,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102470,7 +102470,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102496,7 +102496,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102522,7 +102522,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102548,7 +102548,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102574,7 +102574,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102600,7 +102600,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102626,7 +102626,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102652,7 +102652,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102678,7 +102678,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102704,7 +102704,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102730,7 +102730,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -102756,7 +102756,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -102824,7 +102824,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -102892,7 +102892,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -102960,7 +102960,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -103028,7 +103028,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -103096,7 +103096,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -103164,7 +103164,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -103273,7 +103273,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103299,7 +103299,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103325,7 +103325,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103351,7 +103351,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103377,7 +103377,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103403,7 +103403,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103429,7 +103429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103455,7 +103455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103481,7 +103481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103507,7 +103507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103533,7 +103533,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103559,7 +103559,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103585,7 +103585,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103611,7 +103611,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103637,7 +103637,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103663,7 +103663,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103689,7 +103689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103715,7 +103715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103741,7 +103741,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103767,7 +103767,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103793,7 +103793,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103819,7 +103819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103845,7 +103845,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103871,7 +103871,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103897,7 +103897,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103923,7 +103923,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103949,7 +103949,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -103975,7 +103975,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104001,7 +104001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104027,7 +104027,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104053,7 +104053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104079,7 +104079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104105,7 +104105,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104131,7 +104131,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104157,7 +104157,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104183,7 +104183,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104209,7 +104209,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104235,7 +104235,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104261,7 +104261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104287,7 +104287,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104313,7 +104313,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104339,7 +104339,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104365,7 +104365,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104391,7 +104391,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104417,7 +104417,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104443,7 +104443,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104469,7 +104469,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104495,7 +104495,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104521,7 +104521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104547,7 +104547,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104573,7 +104573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104599,7 +104599,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104625,7 +104625,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104651,7 +104651,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104677,7 +104677,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104703,7 +104703,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104729,7 +104729,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104755,7 +104755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104781,7 +104781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104807,7 +104807,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -104833,7 +104833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -104901,7 +104901,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -104969,7 +104969,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -105037,7 +105037,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -105105,7 +105105,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -105173,7 +105173,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -105241,7 +105241,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -105350,7 +105350,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105376,7 +105376,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105402,7 +105402,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105428,7 +105428,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105454,7 +105454,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105480,7 +105480,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105506,7 +105506,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105532,7 +105532,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105558,7 +105558,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105584,7 +105584,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105610,7 +105610,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105636,7 +105636,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105662,7 +105662,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105688,7 +105688,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105714,7 +105714,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105740,7 +105740,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105766,7 +105766,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105792,7 +105792,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105818,7 +105818,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105844,7 +105844,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105870,7 +105870,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105896,7 +105896,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105922,7 +105922,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105948,7 +105948,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -105974,7 +105974,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106000,7 +106000,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106026,7 +106026,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106052,7 +106052,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106078,7 +106078,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106104,7 +106104,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106130,7 +106130,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106156,7 +106156,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106182,7 +106182,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106208,7 +106208,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106234,7 +106234,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106260,7 +106260,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106286,7 +106286,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106312,7 +106312,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106338,7 +106338,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106364,7 +106364,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106390,7 +106390,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106416,7 +106416,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106442,7 +106442,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106468,7 +106468,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106494,7 +106494,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106520,7 +106520,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106546,7 +106546,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106572,7 +106572,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106598,7 +106598,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106624,7 +106624,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106650,7 +106650,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106676,7 +106676,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106702,7 +106702,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106728,7 +106728,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106754,7 +106754,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106780,7 +106780,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106806,7 +106806,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106832,7 +106832,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106858,7 +106858,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106884,7 +106884,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -106910,7 +106910,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -106978,7 +106978,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -107046,7 +107046,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -107114,7 +107114,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -107182,7 +107182,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -107250,7 +107250,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -107318,7 +107318,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -107427,7 +107427,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107453,7 +107453,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107479,7 +107479,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107505,7 +107505,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107531,7 +107531,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107557,7 +107557,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107583,7 +107583,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107609,7 +107609,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107635,7 +107635,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107661,7 +107661,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107687,7 +107687,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107713,7 +107713,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107739,7 +107739,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107765,7 +107765,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107791,7 +107791,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107817,7 +107817,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107843,7 +107843,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107869,7 +107869,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107895,7 +107895,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107921,7 +107921,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107947,7 +107947,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107973,7 +107973,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -107999,7 +107999,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108025,7 +108025,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108051,7 +108051,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108077,7 +108077,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108103,7 +108103,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108129,7 +108129,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108155,7 +108155,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108181,7 +108181,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108207,7 +108207,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108233,7 +108233,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108259,7 +108259,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108285,7 +108285,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108311,7 +108311,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108337,7 +108337,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108363,7 +108363,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108389,7 +108389,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108415,7 +108415,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108441,7 +108441,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108467,7 +108467,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108493,7 +108493,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108519,7 +108519,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108545,7 +108545,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108571,7 +108571,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108597,7 +108597,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108623,7 +108623,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108649,7 +108649,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108675,7 +108675,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108701,7 +108701,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108727,7 +108727,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108753,7 +108753,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108779,7 +108779,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108805,7 +108805,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108831,7 +108831,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108857,7 +108857,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108883,7 +108883,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108909,7 +108909,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108935,7 +108935,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108961,7 +108961,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -108987,7 +108987,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -109055,7 +109055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -109123,7 +109123,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -109191,7 +109191,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -109259,7 +109259,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -109327,7 +109327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -109395,7 +109395,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -109510,7 +109510,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109536,7 +109536,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109562,7 +109562,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109588,7 +109588,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109614,7 +109614,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109640,7 +109640,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109666,7 +109666,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109692,7 +109692,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109768,7 +109768,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109794,7 +109794,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109820,7 +109820,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109846,7 +109846,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109872,7 +109872,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109898,7 +109898,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109924,7 +109924,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -109950,7 +109950,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -110056,7 +110056,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110082,7 +110082,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110191,7 +110191,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110217,7 +110217,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110356,7 +110356,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110382,7 +110382,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110491,7 +110491,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110517,7 +110517,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110626,7 +110626,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110652,7 +110652,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110761,7 +110761,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110787,7 +110787,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110896,7 +110896,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -110922,7 +110922,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -111031,7 +111031,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -111057,7 +111057,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -111220,7 +111220,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111246,7 +111246,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111272,7 +111272,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111298,7 +111298,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111324,7 +111324,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111350,7 +111350,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111376,7 +111376,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111402,7 +111402,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111428,7 +111428,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111454,7 +111454,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111480,7 +111480,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111506,7 +111506,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111532,7 +111532,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111558,7 +111558,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111584,7 +111584,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111610,7 +111610,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111636,7 +111636,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111662,7 +111662,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111688,7 +111688,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111714,7 +111714,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111740,7 +111740,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111766,7 +111766,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111792,7 +111792,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111818,7 +111818,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111844,7 +111844,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111870,7 +111870,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111896,7 +111896,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111922,7 +111922,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111948,7 +111948,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -111974,7 +111974,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112000,7 +112000,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112026,7 +112026,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112052,7 +112052,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112078,7 +112078,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112104,7 +112104,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112130,7 +112130,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112156,7 +112156,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112182,7 +112182,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112208,7 +112208,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112234,7 +112234,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112260,7 +112260,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112286,7 +112286,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112312,7 +112312,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112338,7 +112338,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112364,7 +112364,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112390,7 +112390,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112416,7 +112416,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112442,7 +112442,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112468,7 +112468,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112494,7 +112494,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112520,7 +112520,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112546,7 +112546,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112572,7 +112572,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112598,7 +112598,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112624,7 +112624,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112650,7 +112650,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112676,7 +112676,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112702,7 +112702,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112728,7 +112728,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112754,7 +112754,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -112780,7 +112780,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -112848,7 +112848,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -112916,7 +112916,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -112984,7 +112984,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -113052,7 +113052,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -113120,7 +113120,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -113188,7 +113188,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -113297,7 +113297,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113323,7 +113323,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113349,7 +113349,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113375,7 +113375,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113401,7 +113401,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113427,7 +113427,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113453,7 +113453,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113479,7 +113479,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113505,7 +113505,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113531,7 +113531,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113557,7 +113557,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113583,7 +113583,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113609,7 +113609,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113635,7 +113635,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113661,7 +113661,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113687,7 +113687,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113713,7 +113713,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113739,7 +113739,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113765,7 +113765,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113791,7 +113791,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113817,7 +113817,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113843,7 +113843,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113869,7 +113869,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113895,7 +113895,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113921,7 +113921,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113947,7 +113947,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113973,7 +113973,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -113999,7 +113999,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114025,7 +114025,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114051,7 +114051,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114077,7 +114077,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114103,7 +114103,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114129,7 +114129,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114155,7 +114155,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114181,7 +114181,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114207,7 +114207,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114233,7 +114233,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114259,7 +114259,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114285,7 +114285,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114311,7 +114311,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114337,7 +114337,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114363,7 +114363,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114389,7 +114389,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114415,7 +114415,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114441,7 +114441,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114467,7 +114467,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114493,7 +114493,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114519,7 +114519,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114545,7 +114545,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114571,7 +114571,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114597,7 +114597,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114623,7 +114623,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114649,7 +114649,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114675,7 +114675,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114701,7 +114701,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114727,7 +114727,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114753,7 +114753,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114779,7 +114779,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114805,7 +114805,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114831,7 +114831,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -114857,7 +114857,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -114925,7 +114925,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -114993,7 +114993,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -115061,7 +115061,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -115129,7 +115129,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -115197,7 +115197,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -115265,7 +115265,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -115374,7 +115374,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115400,7 +115400,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115426,7 +115426,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115452,7 +115452,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115478,7 +115478,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115504,7 +115504,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115530,7 +115530,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115556,7 +115556,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115582,7 +115582,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115608,7 +115608,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115634,7 +115634,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115660,7 +115660,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115686,7 +115686,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115712,7 +115712,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115738,7 +115738,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115764,7 +115764,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115790,7 +115790,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115816,7 +115816,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115842,7 +115842,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115868,7 +115868,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115894,7 +115894,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115920,7 +115920,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115946,7 +115946,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115972,7 +115972,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -115998,7 +115998,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116024,7 +116024,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116050,7 +116050,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116076,7 +116076,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116102,7 +116102,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116128,7 +116128,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116154,7 +116154,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116180,7 +116180,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116206,7 +116206,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116232,7 +116232,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116258,7 +116258,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116284,7 +116284,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116310,7 +116310,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116336,7 +116336,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116362,7 +116362,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116388,7 +116388,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116414,7 +116414,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116440,7 +116440,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116466,7 +116466,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116492,7 +116492,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116518,7 +116518,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116544,7 +116544,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116570,7 +116570,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116596,7 +116596,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116622,7 +116622,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116648,7 +116648,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116674,7 +116674,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116700,7 +116700,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116726,7 +116726,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116752,7 +116752,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116778,7 +116778,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116804,7 +116804,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116830,7 +116830,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116856,7 +116856,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116882,7 +116882,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116908,7 +116908,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -116934,7 +116934,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -117002,7 +117002,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -117070,7 +117070,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -117138,7 +117138,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -117206,7 +117206,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -117274,7 +117274,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -117342,7 +117342,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -117451,7 +117451,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117477,7 +117477,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117503,7 +117503,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117529,7 +117529,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117555,7 +117555,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117581,7 +117581,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117607,7 +117607,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117633,7 +117633,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117659,7 +117659,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117685,7 +117685,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117711,7 +117711,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117737,7 +117737,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117763,7 +117763,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117789,7 +117789,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117815,7 +117815,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117841,7 +117841,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117867,7 +117867,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117893,7 +117893,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117919,7 +117919,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117945,7 +117945,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117971,7 +117971,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -117997,7 +117997,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118023,7 +118023,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118049,7 +118049,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118075,7 +118075,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118101,7 +118101,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118127,7 +118127,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118153,7 +118153,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118179,7 +118179,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118205,7 +118205,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118231,7 +118231,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118257,7 +118257,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118283,7 +118283,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118309,7 +118309,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118335,7 +118335,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118361,7 +118361,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118387,7 +118387,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118413,7 +118413,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118439,7 +118439,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118465,7 +118465,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118491,7 +118491,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118517,7 +118517,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118543,7 +118543,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118569,7 +118569,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118595,7 +118595,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118621,7 +118621,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118647,7 +118647,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118673,7 +118673,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118699,7 +118699,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118725,7 +118725,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118751,7 +118751,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118777,7 +118777,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118803,7 +118803,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118829,7 +118829,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118855,7 +118855,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118881,7 +118881,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118907,7 +118907,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118933,7 +118933,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118959,7 +118959,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -118985,7 +118985,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119011,7 +119011,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -119079,7 +119079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -119147,7 +119147,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -119215,7 +119215,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -119283,7 +119283,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -119351,7 +119351,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -119419,7 +119419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -119528,7 +119528,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119554,7 +119554,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119580,7 +119580,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119606,7 +119606,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119632,7 +119632,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119658,7 +119658,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119684,7 +119684,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119710,7 +119710,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119736,7 +119736,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119762,7 +119762,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119788,7 +119788,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119814,7 +119814,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119840,7 +119840,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119866,7 +119866,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119892,7 +119892,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119918,7 +119918,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119944,7 +119944,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119970,7 +119970,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -119996,7 +119996,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120022,7 +120022,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120048,7 +120048,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120074,7 +120074,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120100,7 +120100,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120126,7 +120126,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120152,7 +120152,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120178,7 +120178,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120204,7 +120204,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120230,7 +120230,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120256,7 +120256,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120282,7 +120282,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120308,7 +120308,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120334,7 +120334,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120360,7 +120360,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120386,7 +120386,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120412,7 +120412,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120438,7 +120438,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120464,7 +120464,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120490,7 +120490,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120516,7 +120516,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120542,7 +120542,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120568,7 +120568,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120594,7 +120594,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120620,7 +120620,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120646,7 +120646,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120672,7 +120672,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120698,7 +120698,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120724,7 +120724,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120750,7 +120750,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120776,7 +120776,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120802,7 +120802,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120828,7 +120828,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120854,7 +120854,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120880,7 +120880,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120906,7 +120906,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120932,7 +120932,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120958,7 +120958,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -120984,7 +120984,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121010,7 +121010,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121036,7 +121036,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121062,7 +121062,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121088,7 +121088,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -121156,7 +121156,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -121224,7 +121224,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -121292,7 +121292,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -121360,7 +121360,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -121428,7 +121428,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -121496,7 +121496,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -121605,7 +121605,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121631,7 +121631,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121657,7 +121657,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121683,7 +121683,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121709,7 +121709,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121735,7 +121735,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121761,7 +121761,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121787,7 +121787,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121813,7 +121813,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121839,7 +121839,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121865,7 +121865,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121891,7 +121891,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121917,7 +121917,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121943,7 +121943,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121969,7 +121969,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -121995,7 +121995,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122021,7 +122021,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122047,7 +122047,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122073,7 +122073,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122099,7 +122099,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122125,7 +122125,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122151,7 +122151,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122177,7 +122177,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122203,7 +122203,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122229,7 +122229,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122255,7 +122255,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122281,7 +122281,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122307,7 +122307,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122333,7 +122333,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122359,7 +122359,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122385,7 +122385,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122411,7 +122411,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122437,7 +122437,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122463,7 +122463,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122489,7 +122489,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122515,7 +122515,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122541,7 +122541,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122567,7 +122567,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122593,7 +122593,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122619,7 +122619,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122645,7 +122645,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122671,7 +122671,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122697,7 +122697,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122723,7 +122723,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122749,7 +122749,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122775,7 +122775,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122801,7 +122801,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122827,7 +122827,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122853,7 +122853,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122879,7 +122879,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122905,7 +122905,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122931,7 +122931,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122957,7 +122957,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -122983,7 +122983,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123009,7 +123009,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123035,7 +123035,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123061,7 +123061,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123087,7 +123087,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123113,7 +123113,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123139,7 +123139,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123165,7 +123165,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -123233,7 +123233,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -123301,7 +123301,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -123369,7 +123369,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -123437,7 +123437,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -123505,7 +123505,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -123573,7 +123573,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -123682,7 +123682,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123708,7 +123708,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123734,7 +123734,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123760,7 +123760,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123786,7 +123786,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123812,7 +123812,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123838,7 +123838,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123864,7 +123864,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123890,7 +123890,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123916,7 +123916,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123942,7 +123942,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123968,7 +123968,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -123994,7 +123994,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124020,7 +124020,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124046,7 +124046,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124072,7 +124072,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124098,7 +124098,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124124,7 +124124,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124150,7 +124150,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124176,7 +124176,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124202,7 +124202,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124228,7 +124228,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124254,7 +124254,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124280,7 +124280,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124306,7 +124306,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124332,7 +124332,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124358,7 +124358,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124384,7 +124384,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124410,7 +124410,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124436,7 +124436,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124462,7 +124462,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124488,7 +124488,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124514,7 +124514,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124540,7 +124540,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124566,7 +124566,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124592,7 +124592,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124618,7 +124618,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124644,7 +124644,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124670,7 +124670,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124696,7 +124696,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124722,7 +124722,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124748,7 +124748,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124774,7 +124774,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124800,7 +124800,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124826,7 +124826,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124852,7 +124852,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124878,7 +124878,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124904,7 +124904,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124930,7 +124930,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124956,7 +124956,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -124982,7 +124982,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125008,7 +125008,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125034,7 +125034,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125060,7 +125060,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125086,7 +125086,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125112,7 +125112,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125138,7 +125138,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125164,7 +125164,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125190,7 +125190,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125216,7 +125216,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125242,7 +125242,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -125310,7 +125310,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -125378,7 +125378,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -125446,7 +125446,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -125514,7 +125514,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -125582,7 +125582,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -125650,7 +125650,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -125759,7 +125759,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125785,7 +125785,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125811,7 +125811,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125837,7 +125837,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125863,7 +125863,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125889,7 +125889,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125915,7 +125915,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125941,7 +125941,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125967,7 +125967,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -125993,7 +125993,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126019,7 +126019,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126045,7 +126045,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126071,7 +126071,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126097,7 +126097,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126123,7 +126123,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126149,7 +126149,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126175,7 +126175,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126201,7 +126201,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126227,7 +126227,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126253,7 +126253,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126279,7 +126279,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126305,7 +126305,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126331,7 +126331,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126357,7 +126357,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126383,7 +126383,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126409,7 +126409,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126435,7 +126435,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126461,7 +126461,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126487,7 +126487,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126513,7 +126513,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126539,7 +126539,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126565,7 +126565,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126591,7 +126591,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126617,7 +126617,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126643,7 +126643,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126669,7 +126669,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126695,7 +126695,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126721,7 +126721,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126747,7 +126747,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126773,7 +126773,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126799,7 +126799,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126825,7 +126825,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126851,7 +126851,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126877,7 +126877,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126903,7 +126903,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126929,7 +126929,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126955,7 +126955,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -126981,7 +126981,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127007,7 +127007,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127033,7 +127033,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127059,7 +127059,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127085,7 +127085,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127111,7 +127111,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127137,7 +127137,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127163,7 +127163,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127189,7 +127189,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127215,7 +127215,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127241,7 +127241,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127267,7 +127267,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127293,7 +127293,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -127319,7 +127319,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -127387,7 +127387,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -127455,7 +127455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -127523,7 +127523,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -127591,7 +127591,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -127659,7 +127659,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -127727,7 +127727,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -127842,7 +127842,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -127868,7 +127868,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -127894,7 +127894,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -127920,7 +127920,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -127946,7 +127946,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -127972,7 +127972,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -127998,7 +127998,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -128024,7 +128024,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -128100,7 +128100,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -128126,7 +128126,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -128152,7 +128152,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -128178,7 +128178,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -128204,7 +128204,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -128230,7 +128230,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -128256,7 +128256,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -128282,7 +128282,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -128388,7 +128388,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -128414,7 +128414,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -128523,7 +128523,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -128549,7 +128549,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -128688,7 +128688,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -128714,7 +128714,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -128823,7 +128823,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -128849,7 +128849,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -128958,7 +128958,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -128984,7 +128984,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -129093,7 +129093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -129119,7 +129119,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -129228,7 +129228,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -129254,7 +129254,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -129363,7 +129363,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 17.5, "volume": 12.5, "wellLocation": { "offset": { @@ -129389,7 +129389,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 4.0, + "flowRate": 28.5, "volume": 12.5, "wellLocation": { "offset": { @@ -129552,7 +129552,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129578,7 +129578,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129604,7 +129604,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129630,7 +129630,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129656,7 +129656,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129682,7 +129682,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129708,7 +129708,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129734,7 +129734,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129760,7 +129760,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129786,7 +129786,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129812,7 +129812,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129838,7 +129838,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129864,7 +129864,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129890,7 +129890,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129916,7 +129916,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129942,7 +129942,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129968,7 +129968,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -129994,7 +129994,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130020,7 +130020,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130046,7 +130046,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130072,7 +130072,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130098,7 +130098,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130124,7 +130124,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130150,7 +130150,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130176,7 +130176,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130202,7 +130202,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130228,7 +130228,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130254,7 +130254,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130280,7 +130280,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130306,7 +130306,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130332,7 +130332,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130358,7 +130358,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130384,7 +130384,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130410,7 +130410,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130436,7 +130436,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130462,7 +130462,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130488,7 +130488,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130514,7 +130514,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130540,7 +130540,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130566,7 +130566,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130592,7 +130592,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130618,7 +130618,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130644,7 +130644,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130670,7 +130670,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130696,7 +130696,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130722,7 +130722,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130748,7 +130748,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130774,7 +130774,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130800,7 +130800,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130826,7 +130826,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130852,7 +130852,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130878,7 +130878,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130904,7 +130904,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130930,7 +130930,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130956,7 +130956,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -130982,7 +130982,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131008,7 +131008,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131034,7 +131034,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131060,7 +131060,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131086,7 +131086,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131112,7 +131112,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -131180,7 +131180,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -131248,7 +131248,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -131316,7 +131316,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -131384,7 +131384,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -131452,7 +131452,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -131520,7 +131520,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -131629,7 +131629,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131655,7 +131655,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131681,7 +131681,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131707,7 +131707,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131733,7 +131733,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131759,7 +131759,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131785,7 +131785,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131811,7 +131811,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131837,7 +131837,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131863,7 +131863,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131889,7 +131889,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131915,7 +131915,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131941,7 +131941,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131967,7 +131967,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -131993,7 +131993,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132019,7 +132019,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132045,7 +132045,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132071,7 +132071,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132097,7 +132097,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132123,7 +132123,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132149,7 +132149,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132175,7 +132175,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132201,7 +132201,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132227,7 +132227,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132253,7 +132253,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132279,7 +132279,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132305,7 +132305,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132331,7 +132331,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132357,7 +132357,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132383,7 +132383,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132409,7 +132409,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132435,7 +132435,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132461,7 +132461,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132487,7 +132487,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132513,7 +132513,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132539,7 +132539,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132565,7 +132565,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132591,7 +132591,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132617,7 +132617,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132643,7 +132643,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132669,7 +132669,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132695,7 +132695,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132721,7 +132721,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132747,7 +132747,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132773,7 +132773,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132799,7 +132799,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132825,7 +132825,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132851,7 +132851,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132877,7 +132877,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132903,7 +132903,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132929,7 +132929,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132955,7 +132955,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -132981,7 +132981,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133007,7 +133007,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133033,7 +133033,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133059,7 +133059,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133085,7 +133085,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133111,7 +133111,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133137,7 +133137,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133163,7 +133163,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133189,7 +133189,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -133257,7 +133257,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -133325,7 +133325,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -133393,7 +133393,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -133461,7 +133461,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -133529,7 +133529,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -133597,7 +133597,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -133706,7 +133706,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133732,7 +133732,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133758,7 +133758,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133784,7 +133784,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133810,7 +133810,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133836,7 +133836,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133862,7 +133862,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133888,7 +133888,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133914,7 +133914,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133940,7 +133940,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133966,7 +133966,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -133992,7 +133992,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134018,7 +134018,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134044,7 +134044,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134070,7 +134070,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134096,7 +134096,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134122,7 +134122,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134148,7 +134148,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134174,7 +134174,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134200,7 +134200,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134226,7 +134226,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134252,7 +134252,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134278,7 +134278,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134304,7 +134304,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134330,7 +134330,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134356,7 +134356,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134382,7 +134382,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134408,7 +134408,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134434,7 +134434,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134460,7 +134460,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134486,7 +134486,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134512,7 +134512,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134538,7 +134538,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134564,7 +134564,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134590,7 +134590,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134616,7 +134616,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134642,7 +134642,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134668,7 +134668,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134694,7 +134694,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134720,7 +134720,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134746,7 +134746,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134772,7 +134772,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134798,7 +134798,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134824,7 +134824,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134850,7 +134850,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134876,7 +134876,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134902,7 +134902,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134928,7 +134928,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134954,7 +134954,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -134980,7 +134980,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135006,7 +135006,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135032,7 +135032,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135058,7 +135058,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135084,7 +135084,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135110,7 +135110,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135136,7 +135136,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135162,7 +135162,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135188,7 +135188,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135214,7 +135214,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135240,7 +135240,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135266,7 +135266,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -135334,7 +135334,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -135402,7 +135402,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -135470,7 +135470,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -135538,7 +135538,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -135606,7 +135606,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -135674,7 +135674,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -135783,7 +135783,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135809,7 +135809,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135835,7 +135835,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135861,7 +135861,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135887,7 +135887,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135913,7 +135913,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135939,7 +135939,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135965,7 +135965,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -135991,7 +135991,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136017,7 +136017,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136043,7 +136043,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136069,7 +136069,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136095,7 +136095,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136121,7 +136121,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136147,7 +136147,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136173,7 +136173,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136199,7 +136199,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136225,7 +136225,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136251,7 +136251,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136277,7 +136277,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136303,7 +136303,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136329,7 +136329,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136355,7 +136355,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136381,7 +136381,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136407,7 +136407,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136433,7 +136433,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136459,7 +136459,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136485,7 +136485,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136511,7 +136511,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136537,7 +136537,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136563,7 +136563,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136589,7 +136589,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136615,7 +136615,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136641,7 +136641,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136667,7 +136667,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136693,7 +136693,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136719,7 +136719,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136745,7 +136745,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136771,7 +136771,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136797,7 +136797,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136823,7 +136823,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136849,7 +136849,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136875,7 +136875,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136901,7 +136901,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136927,7 +136927,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136953,7 +136953,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -136979,7 +136979,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137005,7 +137005,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137031,7 +137031,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137057,7 +137057,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137083,7 +137083,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137109,7 +137109,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137135,7 +137135,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137161,7 +137161,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137187,7 +137187,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137213,7 +137213,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137239,7 +137239,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137265,7 +137265,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137291,7 +137291,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137317,7 +137317,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137343,7 +137343,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -137411,7 +137411,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -137479,7 +137479,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -137547,7 +137547,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -137615,7 +137615,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -137683,7 +137683,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -137751,7 +137751,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -137860,7 +137860,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137886,7 +137886,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137912,7 +137912,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137938,7 +137938,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137964,7 +137964,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -137990,7 +137990,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138016,7 +138016,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138042,7 +138042,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138068,7 +138068,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138094,7 +138094,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138120,7 +138120,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138146,7 +138146,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138172,7 +138172,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138198,7 +138198,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138224,7 +138224,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138250,7 +138250,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138276,7 +138276,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138302,7 +138302,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138328,7 +138328,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138354,7 +138354,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138380,7 +138380,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138406,7 +138406,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138432,7 +138432,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138458,7 +138458,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138484,7 +138484,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138510,7 +138510,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138536,7 +138536,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138562,7 +138562,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138588,7 +138588,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138614,7 +138614,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138640,7 +138640,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138666,7 +138666,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138692,7 +138692,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138718,7 +138718,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138744,7 +138744,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138770,7 +138770,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138796,7 +138796,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138822,7 +138822,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138848,7 +138848,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138874,7 +138874,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138900,7 +138900,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138926,7 +138926,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138952,7 +138952,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -138978,7 +138978,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139004,7 +139004,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139030,7 +139030,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139056,7 +139056,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139082,7 +139082,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139108,7 +139108,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139134,7 +139134,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139160,7 +139160,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139186,7 +139186,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139212,7 +139212,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139238,7 +139238,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139264,7 +139264,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139290,7 +139290,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139316,7 +139316,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139342,7 +139342,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139368,7 +139368,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139394,7 +139394,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139420,7 +139420,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -139488,7 +139488,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -139556,7 +139556,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -139624,7 +139624,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -139692,7 +139692,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -139760,7 +139760,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -139828,7 +139828,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -139937,7 +139937,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139963,7 +139963,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -139989,7 +139989,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140015,7 +140015,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140041,7 +140041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140067,7 +140067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140093,7 +140093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140119,7 +140119,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140145,7 +140145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140171,7 +140171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140197,7 +140197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140223,7 +140223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140249,7 +140249,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140275,7 +140275,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140301,7 +140301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140327,7 +140327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140353,7 +140353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140379,7 +140379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140405,7 +140405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140431,7 +140431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140457,7 +140457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140483,7 +140483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140509,7 +140509,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140535,7 +140535,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140561,7 +140561,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140587,7 +140587,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140613,7 +140613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140639,7 +140639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140665,7 +140665,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140691,7 +140691,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140717,7 +140717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140743,7 +140743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140769,7 +140769,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140795,7 +140795,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140821,7 +140821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140847,7 +140847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140873,7 +140873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140899,7 +140899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140925,7 +140925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140951,7 +140951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -140977,7 +140977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141003,7 +141003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141029,7 +141029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141055,7 +141055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141081,7 +141081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141107,7 +141107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141133,7 +141133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141159,7 +141159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141185,7 +141185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141211,7 +141211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141237,7 +141237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141263,7 +141263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141289,7 +141289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141315,7 +141315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141341,7 +141341,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141367,7 +141367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141393,7 +141393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141419,7 +141419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141445,7 +141445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141471,7 +141471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -141497,7 +141497,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -141565,7 +141565,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -141633,7 +141633,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -141701,7 +141701,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -141769,7 +141769,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -141837,7 +141837,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -141905,7 +141905,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -142014,7 +142014,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142040,7 +142040,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142066,7 +142066,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142092,7 +142092,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142118,7 +142118,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142144,7 +142144,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142170,7 +142170,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142196,7 +142196,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142222,7 +142222,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142248,7 +142248,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142274,7 +142274,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142300,7 +142300,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142326,7 +142326,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142352,7 +142352,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142378,7 +142378,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142404,7 +142404,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142430,7 +142430,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142456,7 +142456,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142482,7 +142482,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142508,7 +142508,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142534,7 +142534,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142560,7 +142560,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142586,7 +142586,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142612,7 +142612,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142638,7 +142638,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142664,7 +142664,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142690,7 +142690,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142716,7 +142716,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142742,7 +142742,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142768,7 +142768,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142794,7 +142794,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142820,7 +142820,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142846,7 +142846,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142872,7 +142872,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142898,7 +142898,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142924,7 +142924,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142950,7 +142950,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -142976,7 +142976,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143002,7 +143002,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143028,7 +143028,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143054,7 +143054,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143080,7 +143080,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143106,7 +143106,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143132,7 +143132,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143158,7 +143158,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143184,7 +143184,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143210,7 +143210,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143236,7 +143236,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143262,7 +143262,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143288,7 +143288,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143314,7 +143314,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143340,7 +143340,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143366,7 +143366,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143392,7 +143392,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143418,7 +143418,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143444,7 +143444,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143470,7 +143470,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143496,7 +143496,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143522,7 +143522,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143548,7 +143548,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -143574,7 +143574,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -143642,7 +143642,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -143710,7 +143710,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -143778,7 +143778,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -143846,7 +143846,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -143914,7 +143914,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -143982,7 +143982,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -144091,7 +144091,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144117,7 +144117,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144143,7 +144143,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144169,7 +144169,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144195,7 +144195,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144221,7 +144221,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144247,7 +144247,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144273,7 +144273,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144299,7 +144299,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144325,7 +144325,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144351,7 +144351,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144377,7 +144377,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144403,7 +144403,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144429,7 +144429,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144455,7 +144455,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144481,7 +144481,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144507,7 +144507,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144533,7 +144533,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144559,7 +144559,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144585,7 +144585,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144611,7 +144611,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144637,7 +144637,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144663,7 +144663,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144689,7 +144689,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144715,7 +144715,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144741,7 +144741,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144767,7 +144767,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144793,7 +144793,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144819,7 +144819,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144845,7 +144845,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144871,7 +144871,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144897,7 +144897,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144923,7 +144923,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144949,7 +144949,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -144975,7 +144975,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145001,7 +145001,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145027,7 +145027,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145053,7 +145053,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145079,7 +145079,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145105,7 +145105,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145131,7 +145131,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145157,7 +145157,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145183,7 +145183,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145209,7 +145209,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145235,7 +145235,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145261,7 +145261,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145287,7 +145287,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145313,7 +145313,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145339,7 +145339,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145365,7 +145365,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145391,7 +145391,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145417,7 +145417,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145443,7 +145443,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145469,7 +145469,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145495,7 +145495,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145521,7 +145521,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145547,7 +145547,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145573,7 +145573,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145599,7 +145599,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145625,7 +145625,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -145651,7 +145651,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 62.0, "wellLocation": { "offset": { @@ -145719,7 +145719,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -145787,7 +145787,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -145855,7 +145855,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -145923,7 +145923,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -145991,7 +145991,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -146059,7 +146059,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 10.0, "wellLocation": { "offset": { @@ -146125,7 +146125,7 @@ "errors": [], "files": [ { - "name": "Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2.py", + "name": "Flex_S_v2_15_P50M_P1000M_KAPALibraryQuantLongv2.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9b3c1dba82][v2_18_None_None_StrRTPwith_unit].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[89a255db0b][OT2_X_v2_18_None_None_StrRTPwith_unit].json similarity index 92% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9b3c1dba82][v2_18_None_None_StrRTPwith_unit].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[89a255db0b][OT2_X_v2_18_None_None_StrRTPwith_unit].json index 9f145db667d..7dd2a932a28 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9b3c1dba82][v2_18_None_None_StrRTPwith_unit].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[89a255db0b][OT2_X_v2_18_None_None_StrRTPwith_unit].json @@ -28,7 +28,7 @@ "errorInfo": { "args": "(\"ParameterContext.add_str() got an unexpected keyword argument 'unit'\",)", "class": "TypeError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_None_None_StrRTPwith_unit.py\", line 11, in add_parameters\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_X_v2_18_None_None_StrRTPwith_unit.py\", line 11, in add_parameters\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -37,6 +37,10 @@ } ], "files": [ + { + "name": "OT2_X_v2_18_None_None_StrRTPwith_unit.py", + "role": "main" + }, { "name": "cpx_4_tuberack_100ul.json", "role": "labware" @@ -56,10 +60,6 @@ { "name": "sample_labware.json", "role": "labware" - }, - { - "name": "v2_18_None_None_StrRTPwith_unit.py", - "role": "main" } ], "labware": [], diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13efc9bfcd][Flex_P1000_96_TC_2_16_AnalysisError_PartialTipPickupThermocyclerLidConflict].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[89a8226c4e][Flex_X_v2_16_P1000_96_TC_PartialTipPickupThermocyclerLidConflict].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13efc9bfcd][Flex_P1000_96_TC_2_16_AnalysisError_PartialTipPickupThermocyclerLidConflict].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[89a8226c4e][Flex_X_v2_16_P1000_96_TC_PartialTipPickupThermocyclerLidConflict].json index 89bbec0231b..942e6e97b53 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13efc9bfcd][Flex_P1000_96_TC_2_16_AnalysisError_PartialTipPickupThermocyclerLidConflict].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[89a8226c4e][Flex_X_v2_16_P1000_96_TC_PartialTipPickupThermocyclerLidConflict].json @@ -2,12 +2,14 @@ "commands": [ { "commandType": "home", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "opentrons_flex_96_tiprack_50ul", "location": { @@ -1159,6 +1161,7 @@ }, { "commandType": "loadPipette", + "notes": [], "params": { "mount": "left", "pipetteName": "p1000_96" @@ -1168,6 +1171,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_200ul_flat", "location": { @@ -2328,6 +2332,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_200ul_flat", "location": { @@ -3488,6 +3493,7 @@ }, { "commandType": "loadModule", + "notes": [], "params": { "location": { "slotName": "B1" @@ -3596,6 +3602,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_200ul_flat", "location": { @@ -4756,6 +4763,7 @@ }, { "commandType": "configureNozzleLayout", + "notes": [], "params": { "configurationParams": { "primaryNozzle": "A12", @@ -4767,6 +4775,7 @@ }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -4792,6 +4801,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 50.0, @@ -4817,6 +4827,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 20.0, @@ -4867,7 +4878,7 @@ ], "files": [ { - "name": "Flex_P1000_96_TC_2_16_AnalysisError_PartialTipPickupThermocyclerLidConflict.py", + "name": "Flex_X_v2_16_P1000_96_TC_PartialTipPickupThermocyclerLidConflict.py", "role": "main" }, { @@ -4937,5 +4948,6 @@ "pipetteName": "p1000_96" } ], - "robotType": "OT-3 Standard" + "robotType": "OT-3 Standard", + "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8e15076a97][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8e15076a97][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name].json deleted file mode 100644 index 3906b190432..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8e15076a97][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "TypeError [line 51]: object of type 'float' has no len()", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "TypeError: object of type 'float' has no len()", - "errorCode": "4000", - "errorInfo": { - "args": "(\"object of type 'float' has no len()\",)", - "class": "TypeError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name.py\", line 51, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 148, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 73, in __init__\n validation.validate_options(default, minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 226, in validate_options\n _validate_choices(minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 162, in _validate_choices\n ensure_display_name(display_name)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 21, in ensure_display_name\n if len(display_name) > DISPLAY_NAME_MAX_LEN:\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_display_name.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Description Too Long 2.18" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fb1d45057d][Flex_P1000_96_TC_2_16_PartialTipPickupColumn].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8fcfd2ced0][Flex_S_v2_16_P1000_96_TC_PartialTipPickupColumn].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fb1d45057d][Flex_P1000_96_TC_2_16_PartialTipPickupColumn].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8fcfd2ced0][Flex_S_v2_16_P1000_96_TC_PartialTipPickupColumn].json index 866b69eace7..64660f2f085 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fb1d45057d][Flex_P1000_96_TC_2_16_PartialTipPickupColumn].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8fcfd2ced0][Flex_S_v2_16_P1000_96_TC_PartialTipPickupColumn].json @@ -2,12 +2,14 @@ "commands": [ { "commandType": "home", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "opentrons_flex_96_tiprack_50ul", "location": { @@ -1159,6 +1161,7 @@ }, { "commandType": "loadPipette", + "notes": [], "params": { "mount": "left", "pipetteName": "p1000_96" @@ -1168,6 +1171,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_200ul_flat", "location": { @@ -2328,6 +2332,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_200ul_flat", "location": { @@ -3488,6 +3493,7 @@ }, { "commandType": "configureNozzleLayout", + "notes": [], "params": { "configurationParams": { "primaryNozzle": "A12", @@ -3499,6 +3505,7 @@ }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -3524,6 +3531,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 50.0, @@ -3549,6 +3557,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 20.0, @@ -3574,6 +3583,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", + "notes": [], "params": { "addressableAreaName": "movableTrashA3", "alternateDropLocation": true, @@ -3596,6 +3606,7 @@ }, { "commandType": "dropTipInPlace", + "notes": [], "params": {}, "result": {}, "status": "succeeded" @@ -3611,7 +3622,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000_96_TC_2_16_PartialTipPickupColumn.py", + "name": "Flex_S_v2_16_P1000_96_TC_PartialTipPickupColumn.py", "role": "main" }, { @@ -3667,5 +3678,6 @@ "pipetteName": "p1000_96" } ], - "robotType": "OT-3 Standard" + "robotType": "OT-3 Standard", + "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7fa902bfa1][OT2_P300SG1_None_5_2_6_Gen1PipetteSimple].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[94913d2988][OT2_S_v3_P300SGen1_None_Gen1PipetteSimple].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7fa902bfa1][OT2_P300SG1_None_5_2_6_Gen1PipetteSimple].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[94913d2988][OT2_S_v3_P300SGen1_None_Gen1PipetteSimple].json index b5d4180c5f4..92829c13eae 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7fa902bfa1][OT2_P300SG1_None_5_2_6_Gen1PipetteSimple].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[94913d2988][OT2_S_v3_P300SGen1_None_Gen1PipetteSimple].json @@ -5772,7 +5772,7 @@ "errors": [], "files": [ { - "name": "OT2_P300SG1_None_5_2_6_Gen1PipetteSimple.json", + "name": "OT2_S_v3_P300SGen1_None_Gen1PipetteSimple.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[240b279ac3][OT2_P300S_Thermocycler_Moam_Error].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9618a6623c][OT2_X_v2_11_P300S_TC1_TC2_ThermocyclerMoamError].json similarity index 98% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[240b279ac3][OT2_P300S_Thermocycler_Moam_Error].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9618a6623c][OT2_X_v2_11_P300S_TC1_TC2_ThermocyclerMoamError].json index 35ec253ed42..bdace9efaf6 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[240b279ac3][OT2_P300S_Thermocycler_Moam_Error].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9618a6623c][OT2_X_v2_11_P300S_TC1_TC2_ThermocyclerMoamError].json @@ -2680,7 +2680,7 @@ "errorInfo": { "args": "('thermocyclerModuleV2 in slot 7 prevents thermocyclerModuleV1 from using slot 7.',)", "class": "DeckConflictError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_P300S_Thermocycler_Moam_Error.py\", line 19, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 814, in load_module\n module_core = self._core.load_module(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/legacy/legacy_protocol_core.py\", line 333, in load_module\n self._deck_layout[resolved_location] = geometry\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/legacy/deck.py\", line 186, in __setitem__\n deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/motion_planning/deck_conflict.py\", line 210, in check\n raise DeckConflictError(\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_X_v2_11_P300S_TC1_TC2_ThermocyclerMoamError.py\", line 19, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 814, in load_module\n module_core = self._core.load_module(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/legacy/legacy_protocol_core.py\", line 333, in load_module\n self._deck_layout[resolved_location] = geometry\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/legacy/deck.py\", line 186, in __setitem__\n deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/motion_planning/deck_conflict.py\", line 210, in check\n raise DeckConflictError(\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -2690,7 +2690,7 @@ ], "files": [ { - "name": "OT2_P300S_Thermocycler_Moam_Error.py", + "name": "OT2_X_v2_11_P300S_TC1_TC2_ThermocyclerMoamError.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[88c6605849][Flex_None_None_TC_2_16_verifyThermocyclerLoadedSlots].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[973fa979e6][Flex_S_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots].json similarity index 95% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[88c6605849][Flex_None_None_TC_2_16_verifyThermocyclerLoadedSlots].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[973fa979e6][Flex_S_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots].json index 68e957910ee..7ce33092ad3 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[88c6605849][Flex_None_None_TC_2_16_verifyThermocyclerLoadedSlots].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[973fa979e6][Flex_S_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots].json @@ -137,7 +137,7 @@ "errorInfo": { "args": "()", "class": "AssertionError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_TC_2_16_verifyThermocyclerLoadedSlots.py\", line 13, in run\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_S_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots.py\", line 13, in run\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -147,7 +147,7 @@ ], "files": [ { - "name": "Flex_None_None_TC_2_16_verifyThermocyclerLoadedSlots.py", + "name": "Flex_S_v2_16_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[99ca590259][v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[99ca590259][v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json deleted file mode 100644 index 7807059d510..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[99ca590259][v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "ParameterValueError [line 48]: Parameter must be set to one of the allowed values of {'flex_8channel_50', 'flex_1channel_50'}.", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be set to one of the allowed values of {'flex_8channel_50', 'flex_1channel_50'}.", - "errorCode": "4000", - "errorInfo": { - "args": "(\"Parameter must be set to one of the allowed values of {'flex_8channel_50', 'flex_1channel_50'}.\",)", - "class": "ParameterValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices.py\", line 48, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 148, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 95, in value\n raise ParameterValueError(\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "default choice does not match a choice" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5eb46a4f85][Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9e56ee92f6][Flex_X_v2_16_P1000_96_GRIP_DropLabwareIntoTrashBin].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5eb46a4f85][Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9e56ee92f6][Flex_X_v2_16_P1000_96_GRIP_DropLabwareIntoTrashBin].json index f72a3066d6a..550f545cbcf 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5eb46a4f85][Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9e56ee92f6][Flex_X_v2_16_P1000_96_GRIP_DropLabwareIntoTrashBin].json @@ -1339,7 +1339,7 @@ ], "files": [ { - "name": "Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin.py", + "name": "Flex_X_v2_16_P1000_96_GRIP_DropLabwareIntoTrashBin.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a550135de6][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a01a35c14a][Flex_X_v2_16_NO_PIPETTES_TrashBinInStagingAreaCol3].json similarity index 98% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a550135de6][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a01a35c14a][Flex_X_v2_16_NO_PIPETTES_TrashBinInStagingAreaCol3].json index 9030ad7192c..4670580f316 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a550135de6][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a01a35c14a][Flex_X_v2_16_NO_PIPETTES_TrashBinInStagingAreaCol3].json @@ -121,7 +121,7 @@ ], "files": [ { - "name": "Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3.py", + "name": "Flex_X_v2_16_NO_PIPETTES_TrashBinInStagingAreaCol3.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a06502b2dc][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a06502b2dc][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description].json index 0ad6ddac98e..fd0394ca385 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a06502b2dc][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a06502b2dc][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 2, - "command_output": "Usage: python -m opentrons.cli analyze [OPTIONS] FILES...\nTry 'python -m opentrons.cli analyze --help' for help.\n\nError: Invalid value for 'FILES...': Path '/var/lib/ot/protocols/generated_protocols/Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description.py' does not exist.\n" + "detail": "ParameterNameError [line 84]: Description must be a string and at most 100 characters.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterNameError: Description must be a string and at most 100 characters.", + "errorCode": "4000", + "errorInfo": { + "args": "('Description must be a string and at most 100 characters.',)", + "class": "ParameterNameError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description.py\", line 84, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 152, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 58, in __init__\n self._description = validation.ensure_description(description)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 60, in ensure_description\n raise ParameterNameError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Description Too Long 2.18" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d577930518][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a08c261369][Flex_S_v2_16_P1000_96_GRIP_DeckConfiguration1NoModulesNoFixtures].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d577930518][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a08c261369][Flex_S_v2_16_P1000_96_GRIP_DeckConfiguration1NoModulesNoFixtures].json index 297b7cf8878..7869a86e776 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d577930518][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a08c261369][Flex_S_v2_16_P1000_96_GRIP_DeckConfiguration1NoModulesNoFixtures].json @@ -8614,7 +8614,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures.py", + "name": "Flex_S_v2_16_P1000_96_GRIP_DeckConfiguration1NoModulesNoFixtures.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[20cefcac62][OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a66d700ed6][OT2_S_v2_13_P300M_P20S_HS_TC_TM_SmokeTestV3].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[20cefcac62][OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a66d700ed6][OT2_S_v2_13_P300M_P20S_HS_TC_TM_SmokeTestV3].json index e22b12eab12..dc96969c9c7 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[20cefcac62][OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a66d700ed6][OT2_S_v2_13_P300M_P20S_HS_TC_TM_SmokeTestV3].json @@ -12526,7 +12526,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3.py", + "name": "OT2_S_v2_13_P300M_P20S_HS_TC_TM_SmokeTestV3.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a8e2d3caa9][v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a8e2d3caa9][v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum].json deleted file mode 100644 index f85dc5fa42d..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a8e2d3caa9][v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "ParameterValueError [line 23]: Parameter must be between 1 and 3 inclusive.", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be between 1 and 3 inclusive.", - "errorCode": "4000", - "errorInfo": { - "args": "('Parameter must be between 1 and 3 inclusive.',)", - "class": "ParameterValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum.py\", line 23, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 55, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 104, in value\n raise ParameterValueError(\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_DefaultOutOfRangeRTP_Override_default_greater_than_maximum.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Default not in range" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[dc8ac87114][Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a9557d762c][Flex_X_v2_16_NO_PIPETTES_AccessToFixedTrashProp].json similarity index 78% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[dc8ac87114][Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a9557d762c][Flex_X_v2_16_NO_PIPETTES_AccessToFixedTrashProp].json index 257a29f5a73..246e3a98216 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[dc8ac87114][Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[a9557d762c][Flex_X_v2_16_NO_PIPETTES_AccessToFixedTrashProp].json @@ -28,7 +28,7 @@ "errorInfo": { "args": "('Fixed Trash is not supported on Flex protocols in API Version 2.16 and above.',)", "class": "APIVersionError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 1118, in fixed_trash\n raise APIVersionError(\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_16_NO_PIPETTES_AccessToFixedTrashProp.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 1118, in fixed_trash\n raise APIVersionError(\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -38,7 +38,7 @@ ], "files": [ { - "name": "Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp.py", + "name": "Flex_X_v2_16_NO_PIPETTES_AccessToFixedTrashProp.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3758150ec1][Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ac886d7768][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TC_TM_IDTXgen96Part1to3].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3758150ec1][Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ac886d7768][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TC_TM_IDTXgen96Part1to3].json index 3041ec1374d..043fbd6f36c 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[3758150ec1][Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ac886d7768][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TC_TM_IDTXgen96Part1to3].json @@ -11032,7 +11032,7 @@ ], "files": [ { - "name": "Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR.py", + "name": "Flex_S_v2_15_P1000_96_GRIP_HS_MB_TC_TM_IDTXgen96Part1to3.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[af0b02a5db][OT2_P300M_P20S_HS_6_1_Smoke620release].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ad627dcedf][OT2_S_v6_P300M_P20S_HS_Smoke620release].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[af0b02a5db][OT2_P300M_P20S_HS_6_1_Smoke620release].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ad627dcedf][OT2_S_v6_P300M_P20S_HS_Smoke620release].json index 881c6ce7e45..537d3e68d3d 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[af0b02a5db][OT2_P300M_P20S_HS_6_1_Smoke620release].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ad627dcedf][OT2_S_v6_P300M_P20S_HS_Smoke620release].json @@ -8469,7 +8469,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_HS_6_1_Smoke620release.json", + "name": "OT2_S_v6_P300M_P20S_HS_Smoke620release.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cf80c979bd][Flex_P1000_96_None_TC_2_16_AnalysisError_pipetteCollisionWithThermocyclerLid].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[adc0621263][Flex_X_v2_16_P1000_96_TC_pipetteCollisionWithThermocyclerLid].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cf80c979bd][Flex_P1000_96_None_TC_2_16_AnalysisError_pipetteCollisionWithThermocyclerLid].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[adc0621263][Flex_X_v2_16_P1000_96_TC_pipetteCollisionWithThermocyclerLid].json index ea4fd2cda9b..ad5e91cee31 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cf80c979bd][Flex_P1000_96_None_TC_2_16_AnalysisError_pipetteCollisionWithThermocyclerLid].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[adc0621263][Flex_X_v2_16_P1000_96_TC_pipetteCollisionWithThermocyclerLid].json @@ -6091,7 +6091,7 @@ ], "files": [ { - "name": "Flex_P1000_96_None_TC_2_16_AnalysisError_pipetteCollisionWithThermocyclerLid.py", + "name": "Flex_X_v2_16_P1000_96_TC_pipetteCollisionWithThermocyclerLid.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ad845b131b][Flex_P1000_96_TC_2_16_AnalysisError_PartialTipPickupTryToReturnTip].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b0ce7dde5d][Flex_X_v2_16_P1000_96_TC_PartialTipPickupTryToReturnTip].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ad845b131b][Flex_P1000_96_TC_2_16_AnalysisError_PartialTipPickupTryToReturnTip].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b0ce7dde5d][Flex_X_v2_16_P1000_96_TC_PartialTipPickupTryToReturnTip].json index 8185dcf40a5..58f383ed1ba 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ad845b131b][Flex_P1000_96_TC_2_16_AnalysisError_PartialTipPickupTryToReturnTip].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b0ce7dde5d][Flex_X_v2_16_P1000_96_TC_PartialTipPickupTryToReturnTip].json @@ -2,12 +2,14 @@ "commands": [ { "commandType": "home", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "opentrons_flex_96_tiprack_50ul", "location": { @@ -1159,6 +1161,7 @@ }, { "commandType": "loadPipette", + "notes": [], "params": { "mount": "left", "pipetteName": "p1000_96" @@ -1168,6 +1171,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_200ul_flat", "location": { @@ -2328,6 +2332,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_200ul_flat", "location": { @@ -3488,6 +3493,7 @@ }, { "commandType": "configureNozzleLayout", + "notes": [], "params": { "configurationParams": { "primaryNozzle": "A12", @@ -3499,6 +3505,7 @@ }, { "commandType": "pickUpTip", + "notes": [], "params": { "wellLocation": { "offset": { @@ -3524,6 +3531,7 @@ }, { "commandType": "aspirate", + "notes": [], "params": { "flowRate": 160.0, "volume": 50.0, @@ -3549,6 +3557,7 @@ }, { "commandType": "dispense", + "notes": [], "params": { "flowRate": 160.0, "volume": 20.0, @@ -3599,7 +3608,7 @@ ], "files": [ { - "name": "Flex_P1000_96_TC_2_16_AnalysisError_PartialTipPickupTryToReturnTip.py", + "name": "Flex_X_v2_16_P1000_96_TC_PartialTipPickupTryToReturnTip.py", "role": "main" }, { @@ -3655,5 +3664,6 @@ "pipetteName": "p1000_96" } ], - "robotType": "OT-3 Standard" + "robotType": "OT-3 Standard", + "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b806f07be9][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b806f07be9][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value].json index 2e07febfda5..04e274d2ef4 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b806f07be9][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b806f07be9][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 2, - "command_output": "Usage: python -m opentrons.cli analyze [OPTIONS] FILES...\nTry 'python -m opentrons.cli analyze --help' for help.\n\nError: Invalid value for 'FILES...': Path '/var/lib/ot/protocols/generated_protocols/Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value.py' does not exist.\n" + "detail": "ParameterDefinitionError [line 62]: All choices provided must be of type 'str'", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterDefinitionError: All choices provided must be of type 'str'", + "errorCode": "4000", + "errorInfo": { + "args": "(\"All choices provided must be of type 'str'\",)", + "class": "ParameterDefinitionError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value.py\", line 62, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 152, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 73, in __init__\n validation.validate_options(default, minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 264, in validate_options\n _validate_choices(minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 191, in _validate_choices\n raise ParameterDefinitionError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_choice_value.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Description Too Long 2.18" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2dbe35fede][Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json similarity index 96% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2dbe35fede][Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json index 72e4dc6770f..736af3bb4ce 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2dbe35fede][Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json @@ -10753,7 +10753,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -10779,7 +10779,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -10805,7 +10805,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -10831,7 +10831,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -10857,7 +10857,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10883,7 +10883,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10909,7 +10909,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -10935,7 +10935,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -10961,7 +10961,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -10987,7 +10987,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -11013,7 +11013,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -11039,7 +11039,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -11065,7 +11065,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -11091,7 +11091,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -11117,7 +11117,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -11143,7 +11143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -11169,7 +11169,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -11195,7 +11195,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -11221,7 +11221,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -11247,7 +11247,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -11273,7 +11273,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -11299,7 +11299,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -11325,7 +11325,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -11351,7 +11351,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -11377,7 +11377,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -11403,7 +11403,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -11429,7 +11429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -11455,7 +11455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -11481,7 +11481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -11507,7 +11507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -11533,7 +11533,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -11559,7 +11559,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -11585,7 +11585,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -11611,7 +11611,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -11637,7 +11637,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -11663,7 +11663,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -11689,7 +11689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -11715,7 +11715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -11741,7 +11741,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -11767,7 +11767,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -11793,7 +11793,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -11819,7 +11819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -11845,7 +11845,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -11871,7 +11871,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -11897,7 +11897,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11923,7 +11923,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11949,7 +11949,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -11975,7 +11975,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -12001,7 +12001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -12027,7 +12027,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -12053,7 +12053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -12079,7 +12079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -12105,7 +12105,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -12131,7 +12131,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -12157,7 +12157,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -12183,7 +12183,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -12209,7 +12209,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -12235,7 +12235,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -12261,7 +12261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -12287,7 +12287,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -12313,7 +12313,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -12339,7 +12339,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -12365,7 +12365,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -12391,7 +12391,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -12417,7 +12417,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -12443,7 +12443,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -12469,7 +12469,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -12495,7 +12495,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -12521,7 +12521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -12547,7 +12547,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -12573,7 +12573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -12599,7 +12599,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -12625,7 +12625,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -12651,7 +12651,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -12677,7 +12677,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -12703,7 +12703,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -12729,7 +12729,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -12755,7 +12755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -12781,7 +12781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -12807,7 +12807,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -12833,7 +12833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12859,7 +12859,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12885,7 +12885,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -12911,7 +12911,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -12937,7 +12937,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -12963,7 +12963,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -12989,7 +12989,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -13015,7 +13015,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -13041,7 +13041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -13067,7 +13067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -13093,7 +13093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -13119,7 +13119,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -13145,7 +13145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -13171,7 +13171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -13197,7 +13197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -13223,7 +13223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -13249,7 +13249,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -13275,7 +13275,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -13301,7 +13301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -13327,7 +13327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -13353,7 +13353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -13379,7 +13379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -13405,7 +13405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -13431,7 +13431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -13457,7 +13457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -13483,7 +13483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -13509,7 +13509,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -13535,7 +13535,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -13561,7 +13561,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -13587,7 +13587,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -13613,7 +13613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -13639,7 +13639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -13665,7 +13665,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -13691,7 +13691,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -13717,7 +13717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -13743,7 +13743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -13769,7 +13769,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -13795,7 +13795,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -13821,7 +13821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -13847,7 +13847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -13873,7 +13873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -13899,7 +13899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -13925,7 +13925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -13951,7 +13951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -13977,7 +13977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -14003,7 +14003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -14029,7 +14029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -14055,7 +14055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -14081,7 +14081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -14107,7 +14107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -14133,7 +14133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -14159,7 +14159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -14185,7 +14185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -14211,7 +14211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -14237,7 +14237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -14263,7 +14263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -14289,7 +14289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -14315,7 +14315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -14341,7 +14341,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -14367,7 +14367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -14393,7 +14393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -14419,7 +14419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -14445,7 +14445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -14471,7 +14471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -14497,7 +14497,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -14523,7 +14523,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -14549,7 +14549,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -14575,7 +14575,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -14601,7 +14601,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -14627,7 +14627,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -14653,7 +14653,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -14679,7 +14679,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -14705,7 +14705,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -14731,7 +14731,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -14757,7 +14757,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -14783,7 +14783,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -14809,7 +14809,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -14835,7 +14835,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -14861,7 +14861,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -14887,7 +14887,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -14913,7 +14913,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -14939,7 +14939,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -14965,7 +14965,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -14991,7 +14991,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -15017,7 +15017,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -15043,7 +15043,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -15069,7 +15069,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -15095,7 +15095,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -15121,7 +15121,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -15147,7 +15147,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -15173,7 +15173,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -15199,7 +15199,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -15225,7 +15225,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -15251,7 +15251,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -15277,7 +15277,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -15303,7 +15303,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -15329,7 +15329,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -15355,7 +15355,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -15381,7 +15381,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -15407,7 +15407,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -15433,7 +15433,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -15459,7 +15459,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -15485,7 +15485,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -15511,7 +15511,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -15537,7 +15537,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -15563,7 +15563,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -15589,7 +15589,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -15615,7 +15615,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -15641,7 +15641,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -15667,7 +15667,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -15773,7 +15773,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -15799,7 +15799,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -15875,7 +15875,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -15901,7 +15901,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -15977,7 +15977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -16003,7 +16003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -16079,7 +16079,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -16105,7 +16105,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -16181,7 +16181,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -16207,7 +16207,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -16283,7 +16283,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -16309,7 +16309,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -16385,7 +16385,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16411,7 +16411,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16487,7 +16487,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -16513,7 +16513,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -16589,7 +16589,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -16615,7 +16615,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -16691,7 +16691,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -16717,7 +16717,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -16793,7 +16793,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -16819,7 +16819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -16895,7 +16895,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -16921,7 +16921,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -16997,7 +16997,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -17023,7 +17023,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -17099,7 +17099,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -17125,7 +17125,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -17201,7 +17201,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -17227,7 +17227,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -17303,7 +17303,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -17329,7 +17329,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -17405,7 +17405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -17431,7 +17431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -17507,7 +17507,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -17533,7 +17533,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -17609,7 +17609,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -17635,7 +17635,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -17711,7 +17711,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -17737,7 +17737,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -17813,7 +17813,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -17839,7 +17839,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -17915,7 +17915,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -17941,7 +17941,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -18017,7 +18017,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -18043,7 +18043,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -18119,7 +18119,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -18145,7 +18145,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -18221,7 +18221,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -18247,7 +18247,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -18323,7 +18323,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -18349,7 +18349,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -18425,7 +18425,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -18451,7 +18451,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -18527,7 +18527,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -18553,7 +18553,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -18629,7 +18629,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -18655,7 +18655,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -18731,7 +18731,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -18757,7 +18757,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -18833,7 +18833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -18859,7 +18859,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -18935,7 +18935,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -18961,7 +18961,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -19037,7 +19037,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -19063,7 +19063,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -19139,7 +19139,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -19165,7 +19165,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -19241,7 +19241,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -19267,7 +19267,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -19343,7 +19343,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -19369,7 +19369,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -19445,7 +19445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -19471,7 +19471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -19547,7 +19547,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -19573,7 +19573,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -19649,7 +19649,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -19675,7 +19675,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -19751,7 +19751,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -19777,7 +19777,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -19853,7 +19853,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -19879,7 +19879,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -19955,7 +19955,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -19981,7 +19981,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -20057,7 +20057,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -20083,7 +20083,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -20159,7 +20159,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -20185,7 +20185,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -20261,7 +20261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -20287,7 +20287,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -20363,7 +20363,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -20389,7 +20389,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -20465,7 +20465,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -20491,7 +20491,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -20567,7 +20567,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -20593,7 +20593,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -20669,7 +20669,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -20695,7 +20695,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -20771,7 +20771,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -20797,7 +20797,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -20873,7 +20873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -20899,7 +20899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -20975,7 +20975,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21001,7 +21001,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -21077,7 +21077,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -21103,7 +21103,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -21179,7 +21179,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -21205,7 +21205,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -21281,7 +21281,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -21307,7 +21307,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -21383,7 +21383,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -21409,7 +21409,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -21485,7 +21485,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -21511,7 +21511,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -21587,7 +21587,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -21613,7 +21613,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -21689,7 +21689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -21715,7 +21715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -21791,7 +21791,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -21817,7 +21817,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -21893,7 +21893,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -21919,7 +21919,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -21995,7 +21995,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -22021,7 +22021,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -22097,7 +22097,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -22123,7 +22123,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -22199,7 +22199,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -22225,7 +22225,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -22301,7 +22301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -22327,7 +22327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -22403,7 +22403,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -22429,7 +22429,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -22505,7 +22505,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -22531,7 +22531,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -22607,7 +22607,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -22633,7 +22633,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -22709,7 +22709,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -22735,7 +22735,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -22811,7 +22811,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -22837,7 +22837,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -22913,7 +22913,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -22939,7 +22939,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -23015,7 +23015,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -23041,7 +23041,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -23117,7 +23117,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -23143,7 +23143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -23219,7 +23219,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -23245,7 +23245,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -23321,7 +23321,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -23347,7 +23347,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -23423,7 +23423,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -23449,7 +23449,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -23525,7 +23525,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -23551,7 +23551,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -23627,7 +23627,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -23653,7 +23653,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -23729,7 +23729,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -23755,7 +23755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -23831,7 +23831,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -23857,7 +23857,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -23933,7 +23933,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -23959,7 +23959,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -24035,7 +24035,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -24061,7 +24061,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -24137,7 +24137,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -24163,7 +24163,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -24239,7 +24239,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -24265,7 +24265,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -24341,7 +24341,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24367,7 +24367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24443,7 +24443,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -24469,7 +24469,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -24545,7 +24545,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -24571,7 +24571,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -24647,7 +24647,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -24673,7 +24673,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -24749,7 +24749,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -24775,7 +24775,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -24851,7 +24851,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -24877,7 +24877,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -24953,7 +24953,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -24979,7 +24979,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -25055,7 +25055,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -25081,7 +25081,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -25157,7 +25157,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -25183,7 +25183,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -25259,7 +25259,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -25285,7 +25285,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -25361,7 +25361,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -25387,7 +25387,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -25493,7 +25493,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -25519,7 +25519,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -25545,7 +25545,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -25571,7 +25571,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -25597,7 +25597,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -25623,7 +25623,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -25649,7 +25649,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -25675,7 +25675,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -25701,7 +25701,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -25727,7 +25727,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -25753,7 +25753,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25779,7 +25779,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -25805,7 +25805,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25831,7 +25831,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25857,7 +25857,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -25883,7 +25883,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -25909,7 +25909,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -25935,7 +25935,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -25961,7 +25961,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -25987,7 +25987,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -26013,7 +26013,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -26039,7 +26039,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -26065,7 +26065,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -26091,7 +26091,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -26117,7 +26117,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -26143,7 +26143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -26169,7 +26169,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -26195,7 +26195,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -26221,7 +26221,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -26247,7 +26247,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -26273,7 +26273,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -26299,7 +26299,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -26325,7 +26325,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -26351,7 +26351,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -26377,7 +26377,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -26403,7 +26403,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -26429,7 +26429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -26455,7 +26455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -26481,7 +26481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -26507,7 +26507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -26533,7 +26533,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -26559,7 +26559,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -26585,7 +26585,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -26611,7 +26611,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -26637,7 +26637,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -26663,7 +26663,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -26689,7 +26689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -26715,7 +26715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -26741,7 +26741,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -26767,7 +26767,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -26793,7 +26793,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -26819,7 +26819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -26845,7 +26845,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -26871,7 +26871,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -26897,7 +26897,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -26923,7 +26923,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -26949,7 +26949,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -26975,7 +26975,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -27001,7 +27001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -27027,7 +27027,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -27053,7 +27053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -27079,7 +27079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -27105,7 +27105,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27131,7 +27131,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -27157,7 +27157,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -27183,7 +27183,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -27209,7 +27209,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -27235,7 +27235,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -27261,7 +27261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -27287,7 +27287,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -27313,7 +27313,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -27339,7 +27339,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -27365,7 +27365,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -27391,7 +27391,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -27417,7 +27417,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -27443,7 +27443,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -27469,7 +27469,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -27495,7 +27495,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -27521,7 +27521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -27547,7 +27547,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -27573,7 +27573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -27599,7 +27599,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -27625,7 +27625,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -27651,7 +27651,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -27677,7 +27677,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -27703,7 +27703,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -27729,7 +27729,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -27755,7 +27755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -27781,7 +27781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -27807,7 +27807,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -27833,7 +27833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -27859,7 +27859,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -27885,7 +27885,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -27911,7 +27911,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -27937,7 +27937,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -27963,7 +27963,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -27989,7 +27989,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -28015,7 +28015,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -28041,7 +28041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -28067,7 +28067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -28093,7 +28093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -28119,7 +28119,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -28145,7 +28145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28171,7 +28171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -28197,7 +28197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -28223,7 +28223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -28249,7 +28249,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -28275,7 +28275,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -28301,7 +28301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -28327,7 +28327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -28353,7 +28353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -28379,7 +28379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -28405,7 +28405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -28431,7 +28431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -28457,7 +28457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -28483,7 +28483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -28509,7 +28509,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -28535,7 +28535,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -28561,7 +28561,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -28587,7 +28587,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -28613,7 +28613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -28639,7 +28639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -28665,7 +28665,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -28691,7 +28691,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -28717,7 +28717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -28743,7 +28743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -28769,7 +28769,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -28795,7 +28795,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -28821,7 +28821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -28847,7 +28847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -28873,7 +28873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -28899,7 +28899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -28925,7 +28925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -28951,7 +28951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -28977,7 +28977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -29003,7 +29003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -29029,7 +29029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -29055,7 +29055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -29081,7 +29081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -29107,7 +29107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -29133,7 +29133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -29159,7 +29159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -29185,7 +29185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -29211,7 +29211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -29237,7 +29237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -29263,7 +29263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -29289,7 +29289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -29315,7 +29315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -29341,7 +29341,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -29367,7 +29367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -29393,7 +29393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -29419,7 +29419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -29445,7 +29445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -29471,7 +29471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -29497,7 +29497,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -29523,7 +29523,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -29549,7 +29549,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -29575,7 +29575,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -29601,7 +29601,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -29627,7 +29627,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -29653,7 +29653,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -29679,7 +29679,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -29705,7 +29705,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -29731,7 +29731,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -29757,7 +29757,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -29783,7 +29783,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -29809,7 +29809,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -29835,7 +29835,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -29861,7 +29861,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -29887,7 +29887,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -29913,7 +29913,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -29939,7 +29939,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -29965,7 +29965,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -29991,7 +29991,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -30017,7 +30017,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -30043,7 +30043,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -30069,7 +30069,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -30095,7 +30095,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -30121,7 +30121,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -30147,7 +30147,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -30173,7 +30173,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -30199,7 +30199,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -30225,7 +30225,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -30251,7 +30251,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -30277,7 +30277,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -30303,7 +30303,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -30329,7 +30329,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -30355,7 +30355,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -30381,7 +30381,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -30407,7 +30407,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -30513,7 +30513,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -30539,7 +30539,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -30615,7 +30615,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -30641,7 +30641,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -30717,7 +30717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -30743,7 +30743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -30819,7 +30819,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -30845,7 +30845,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -30921,7 +30921,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -30947,7 +30947,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -31023,7 +31023,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31049,7 +31049,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -31125,7 +31125,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -31151,7 +31151,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -31227,7 +31227,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -31253,7 +31253,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -31329,7 +31329,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -31355,7 +31355,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -31431,7 +31431,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -31457,7 +31457,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -31533,7 +31533,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -31559,7 +31559,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -31635,7 +31635,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -31661,7 +31661,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -31737,7 +31737,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -31763,7 +31763,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -31839,7 +31839,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -31865,7 +31865,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -31941,7 +31941,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -31967,7 +31967,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -32043,7 +32043,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -32069,7 +32069,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -32145,7 +32145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -32171,7 +32171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -32247,7 +32247,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -32273,7 +32273,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -32349,7 +32349,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -32375,7 +32375,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -32451,7 +32451,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -32477,7 +32477,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -32553,7 +32553,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -32579,7 +32579,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -32655,7 +32655,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -32681,7 +32681,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -32757,7 +32757,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -32783,7 +32783,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -32859,7 +32859,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -32885,7 +32885,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -32961,7 +32961,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -32987,7 +32987,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -33063,7 +33063,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -33089,7 +33089,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -33165,7 +33165,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -33191,7 +33191,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -33267,7 +33267,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -33293,7 +33293,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -33369,7 +33369,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -33395,7 +33395,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -33471,7 +33471,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -33497,7 +33497,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -33573,7 +33573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -33599,7 +33599,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -33675,7 +33675,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33701,7 +33701,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -33777,7 +33777,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -33803,7 +33803,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -33879,7 +33879,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -33905,7 +33905,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -33981,7 +33981,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -34007,7 +34007,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -34083,7 +34083,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -34109,7 +34109,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -34185,7 +34185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -34211,7 +34211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -34287,7 +34287,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -34313,7 +34313,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -34389,7 +34389,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -34415,7 +34415,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -34491,7 +34491,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -34517,7 +34517,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -34593,7 +34593,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -34619,7 +34619,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -34695,7 +34695,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -34721,7 +34721,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -34797,7 +34797,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -34823,7 +34823,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -34899,7 +34899,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -34925,7 +34925,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -35001,7 +35001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -35027,7 +35027,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -35103,7 +35103,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -35129,7 +35129,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -35205,7 +35205,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -35231,7 +35231,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -35307,7 +35307,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -35333,7 +35333,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -35409,7 +35409,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -35435,7 +35435,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -35511,7 +35511,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -35537,7 +35537,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -35613,7 +35613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -35639,7 +35639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -35715,7 +35715,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35741,7 +35741,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -35817,7 +35817,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -35843,7 +35843,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -35919,7 +35919,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -35945,7 +35945,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -36021,7 +36021,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -36047,7 +36047,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -36123,7 +36123,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -36149,7 +36149,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -36225,7 +36225,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -36251,7 +36251,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -36327,7 +36327,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -36353,7 +36353,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -36429,7 +36429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -36455,7 +36455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -36531,7 +36531,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -36557,7 +36557,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -36633,7 +36633,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -36659,7 +36659,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -36735,7 +36735,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -36761,7 +36761,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -36837,7 +36837,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -36863,7 +36863,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -36939,7 +36939,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -36965,7 +36965,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -37041,7 +37041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -37067,7 +37067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -37143,7 +37143,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -37169,7 +37169,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -37245,7 +37245,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -37271,7 +37271,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -37347,7 +37347,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -37373,7 +37373,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -37449,7 +37449,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -37475,7 +37475,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -37551,7 +37551,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -37577,7 +37577,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -37653,7 +37653,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -37679,7 +37679,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -37755,7 +37755,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -37781,7 +37781,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -37857,7 +37857,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -37883,7 +37883,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -37959,7 +37959,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -37985,7 +37985,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -38061,7 +38061,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -38087,7 +38087,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -38163,7 +38163,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -38189,7 +38189,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -38265,7 +38265,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -38291,7 +38291,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -38367,7 +38367,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -38393,7 +38393,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -38469,7 +38469,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38495,7 +38495,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -38571,7 +38571,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -38597,7 +38597,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -38673,7 +38673,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -38699,7 +38699,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -38775,7 +38775,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -38801,7 +38801,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -38877,7 +38877,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -38903,7 +38903,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -38979,7 +38979,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -39005,7 +39005,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -39081,7 +39081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -39107,7 +39107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -39183,7 +39183,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -39209,7 +39209,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -39285,7 +39285,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -39311,7 +39311,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -39387,7 +39387,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -39413,7 +39413,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -39489,7 +39489,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -39515,7 +39515,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -39591,7 +39591,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -39617,7 +39617,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -39693,7 +39693,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -39719,7 +39719,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -39795,7 +39795,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -39821,7 +39821,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -39897,7 +39897,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -39923,7 +39923,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -39999,7 +39999,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40025,7 +40025,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40101,7 +40101,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -40127,7 +40127,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -40233,7 +40233,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -40259,7 +40259,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -40285,7 +40285,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -40311,7 +40311,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -40337,7 +40337,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -40363,7 +40363,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -40389,7 +40389,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -40415,7 +40415,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -40441,7 +40441,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -40467,7 +40467,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -40493,7 +40493,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -40519,7 +40519,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -40545,7 +40545,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -40571,7 +40571,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -40597,7 +40597,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -40623,7 +40623,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -40649,7 +40649,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40675,7 +40675,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -40701,7 +40701,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -40727,7 +40727,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -40753,7 +40753,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -40779,7 +40779,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -40805,7 +40805,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -40831,7 +40831,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -40857,7 +40857,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -40883,7 +40883,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -40909,7 +40909,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -40935,7 +40935,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -40961,7 +40961,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -40987,7 +40987,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -41013,7 +41013,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -41039,7 +41039,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -41065,7 +41065,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -41091,7 +41091,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -41117,7 +41117,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -41143,7 +41143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -41169,7 +41169,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -41195,7 +41195,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -41221,7 +41221,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -41247,7 +41247,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -41273,7 +41273,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -41299,7 +41299,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -41325,7 +41325,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -41351,7 +41351,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -41377,7 +41377,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -41403,7 +41403,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -41429,7 +41429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -41455,7 +41455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -41481,7 +41481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -41507,7 +41507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -41533,7 +41533,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41559,7 +41559,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -41585,7 +41585,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -41611,7 +41611,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -41637,7 +41637,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -41663,7 +41663,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -41689,7 +41689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -41715,7 +41715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -41741,7 +41741,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -41767,7 +41767,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -41793,7 +41793,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -41819,7 +41819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -41845,7 +41845,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -41871,7 +41871,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -41897,7 +41897,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -41923,7 +41923,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -41949,7 +41949,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -41975,7 +41975,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -42001,7 +42001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -42027,7 +42027,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -42053,7 +42053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -42079,7 +42079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -42105,7 +42105,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -42131,7 +42131,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -42157,7 +42157,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -42183,7 +42183,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -42209,7 +42209,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -42235,7 +42235,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -42261,7 +42261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -42287,7 +42287,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -42313,7 +42313,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -42339,7 +42339,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -42365,7 +42365,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -42391,7 +42391,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -42417,7 +42417,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -42443,7 +42443,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -42469,7 +42469,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -42495,7 +42495,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -42521,7 +42521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -42547,7 +42547,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -42573,7 +42573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -42599,7 +42599,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -42625,7 +42625,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -42651,7 +42651,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -42677,7 +42677,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -42703,7 +42703,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -42729,7 +42729,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -42755,7 +42755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -42781,7 +42781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -42807,7 +42807,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -42833,7 +42833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -42859,7 +42859,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -42885,7 +42885,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -42911,7 +42911,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -42937,7 +42937,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -42963,7 +42963,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -42989,7 +42989,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -43015,7 +43015,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -43041,7 +43041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -43067,7 +43067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -43093,7 +43093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -43119,7 +43119,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -43145,7 +43145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -43171,7 +43171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -43197,7 +43197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -43223,7 +43223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -43249,7 +43249,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -43275,7 +43275,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -43301,7 +43301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -43327,7 +43327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -43353,7 +43353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -43379,7 +43379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -43405,7 +43405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43431,7 +43431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -43457,7 +43457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -43483,7 +43483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -43509,7 +43509,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -43535,7 +43535,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -43561,7 +43561,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -43587,7 +43587,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -43613,7 +43613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -43639,7 +43639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -43665,7 +43665,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -43691,7 +43691,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -43717,7 +43717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -43743,7 +43743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -43769,7 +43769,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -43795,7 +43795,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -43821,7 +43821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -43847,7 +43847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -43873,7 +43873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -43899,7 +43899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -43925,7 +43925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -43951,7 +43951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -43977,7 +43977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -44003,7 +44003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -44029,7 +44029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -44055,7 +44055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -44081,7 +44081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -44107,7 +44107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -44133,7 +44133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -44159,7 +44159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -44185,7 +44185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -44211,7 +44211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -44237,7 +44237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -44263,7 +44263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -44289,7 +44289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44315,7 +44315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -44341,7 +44341,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -44367,7 +44367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -44393,7 +44393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -44419,7 +44419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -44445,7 +44445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -44471,7 +44471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -44497,7 +44497,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -44523,7 +44523,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -44549,7 +44549,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -44575,7 +44575,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -44601,7 +44601,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -44627,7 +44627,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -44653,7 +44653,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -44679,7 +44679,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -44705,7 +44705,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -44731,7 +44731,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -44757,7 +44757,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -44783,7 +44783,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -44809,7 +44809,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -44835,7 +44835,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -44861,7 +44861,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -44887,7 +44887,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -44913,7 +44913,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -44939,7 +44939,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -44965,7 +44965,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -44991,7 +44991,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -45017,7 +45017,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -45043,7 +45043,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -45069,7 +45069,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45095,7 +45095,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -45121,7 +45121,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -45147,7 +45147,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -45253,7 +45253,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -45279,7 +45279,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -45355,7 +45355,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -45381,7 +45381,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -45457,7 +45457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -45483,7 +45483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -45559,7 +45559,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -45585,7 +45585,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -45661,7 +45661,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -45687,7 +45687,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -45763,7 +45763,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -45789,7 +45789,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -45865,7 +45865,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -45891,7 +45891,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -45967,7 +45967,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -45993,7 +45993,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -46069,7 +46069,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46095,7 +46095,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -46171,7 +46171,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -46197,7 +46197,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -46273,7 +46273,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -46299,7 +46299,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -46375,7 +46375,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -46401,7 +46401,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -46477,7 +46477,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -46503,7 +46503,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -46579,7 +46579,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -46605,7 +46605,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -46681,7 +46681,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -46707,7 +46707,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -46783,7 +46783,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -46809,7 +46809,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -46885,7 +46885,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -46911,7 +46911,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -46987,7 +46987,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -47013,7 +47013,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -47089,7 +47089,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -47115,7 +47115,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -47191,7 +47191,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -47217,7 +47217,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -47293,7 +47293,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -47319,7 +47319,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -47395,7 +47395,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -47421,7 +47421,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -47497,7 +47497,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -47523,7 +47523,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -47599,7 +47599,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -47625,7 +47625,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -47701,7 +47701,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -47727,7 +47727,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -47803,7 +47803,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47829,7 +47829,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -47905,7 +47905,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -47931,7 +47931,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -48007,7 +48007,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -48033,7 +48033,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -48109,7 +48109,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -48135,7 +48135,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -48211,7 +48211,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -48237,7 +48237,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -48313,7 +48313,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -48339,7 +48339,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -48415,7 +48415,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -48441,7 +48441,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -48517,7 +48517,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -48543,7 +48543,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -48619,7 +48619,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -48645,7 +48645,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -48721,7 +48721,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -48747,7 +48747,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -48823,7 +48823,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -48849,7 +48849,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -48925,7 +48925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -48951,7 +48951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -49027,7 +49027,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -49053,7 +49053,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -49129,7 +49129,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -49155,7 +49155,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -49231,7 +49231,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -49257,7 +49257,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -49333,7 +49333,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -49359,7 +49359,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -49435,7 +49435,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -49461,7 +49461,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -49537,7 +49537,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -49563,7 +49563,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -49639,7 +49639,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -49665,7 +49665,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -49741,7 +49741,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -49767,7 +49767,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -49843,7 +49843,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -49869,7 +49869,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -49945,7 +49945,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -49971,7 +49971,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -50047,7 +50047,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -50073,7 +50073,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -50149,7 +50149,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -50175,7 +50175,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -50251,7 +50251,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -50277,7 +50277,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -50353,7 +50353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -50379,7 +50379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -50455,7 +50455,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -50481,7 +50481,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -50557,7 +50557,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -50583,7 +50583,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -50659,7 +50659,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -50685,7 +50685,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -50761,7 +50761,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -50787,7 +50787,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -50863,7 +50863,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -50889,7 +50889,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -50965,7 +50965,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -50991,7 +50991,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -51067,7 +51067,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -51093,7 +51093,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -51169,7 +51169,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -51195,7 +51195,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -51271,7 +51271,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -51297,7 +51297,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -51373,7 +51373,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -51399,7 +51399,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -51475,7 +51475,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51501,7 +51501,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -51577,7 +51577,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -51603,7 +51603,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -51679,7 +51679,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -51705,7 +51705,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -51781,7 +51781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -51807,7 +51807,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -51883,7 +51883,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -51909,7 +51909,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -51985,7 +51985,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -52011,7 +52011,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -52087,7 +52087,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -52113,7 +52113,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -52189,7 +52189,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -52215,7 +52215,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -52291,7 +52291,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -52317,7 +52317,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -52393,7 +52393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -52419,7 +52419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -52495,7 +52495,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -52521,7 +52521,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -52597,7 +52597,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -52623,7 +52623,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -52699,7 +52699,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -52725,7 +52725,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -52801,7 +52801,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -52827,7 +52827,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -52903,7 +52903,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -52929,7 +52929,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -53005,7 +53005,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -53031,7 +53031,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -53107,7 +53107,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -53133,7 +53133,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -53209,7 +53209,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53235,7 +53235,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -53311,7 +53311,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -53337,7 +53337,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -53413,7 +53413,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -53439,7 +53439,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -53515,7 +53515,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -53541,7 +53541,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -53617,7 +53617,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -53643,7 +53643,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -53719,7 +53719,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -53745,7 +53745,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -53821,7 +53821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -53847,7 +53847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -53923,7 +53923,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -53949,7 +53949,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -54025,7 +54025,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -54051,7 +54051,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -54127,7 +54127,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -54153,7 +54153,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -54229,7 +54229,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -54255,7 +54255,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -54331,7 +54331,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -54357,7 +54357,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -54433,7 +54433,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -54459,7 +54459,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -54535,7 +54535,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -54561,7 +54561,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -54637,7 +54637,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -54663,7 +54663,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -54739,7 +54739,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -54765,7 +54765,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -54841,7 +54841,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -54867,7 +54867,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -54973,7 +54973,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -54999,7 +54999,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -55025,7 +55025,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -55051,7 +55051,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -55077,7 +55077,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -55103,7 +55103,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -55129,7 +55129,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -55155,7 +55155,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -55181,7 +55181,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -55207,7 +55207,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -55233,7 +55233,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -55259,7 +55259,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -55285,7 +55285,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -55311,7 +55311,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -55337,7 +55337,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -55363,7 +55363,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -55389,7 +55389,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -55415,7 +55415,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -55441,7 +55441,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -55467,7 +55467,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -55493,7 +55493,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -55519,7 +55519,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -55545,7 +55545,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -55571,7 +55571,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -55597,7 +55597,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -55623,7 +55623,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -55649,7 +55649,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -55675,7 +55675,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -55701,7 +55701,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -55727,7 +55727,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -55753,7 +55753,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -55779,7 +55779,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -55805,7 +55805,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -55831,7 +55831,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -55857,7 +55857,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -55883,7 +55883,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -55909,7 +55909,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -55935,7 +55935,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -55961,7 +55961,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -55987,7 +55987,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -56013,7 +56013,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -56039,7 +56039,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -56065,7 +56065,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -56091,7 +56091,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -56117,7 +56117,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -56143,7 +56143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -56169,7 +56169,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -56195,7 +56195,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -56221,7 +56221,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -56247,7 +56247,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -56273,7 +56273,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56299,7 +56299,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -56325,7 +56325,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -56351,7 +56351,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -56377,7 +56377,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -56403,7 +56403,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -56429,7 +56429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -56455,7 +56455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -56481,7 +56481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -56507,7 +56507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -56533,7 +56533,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -56559,7 +56559,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -56585,7 +56585,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -56611,7 +56611,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -56637,7 +56637,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -56663,7 +56663,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -56689,7 +56689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -56715,7 +56715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -56741,7 +56741,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -56767,7 +56767,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -56793,7 +56793,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -56819,7 +56819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -56845,7 +56845,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -56871,7 +56871,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -56897,7 +56897,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -56923,7 +56923,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -56949,7 +56949,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -56975,7 +56975,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -57001,7 +57001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -57027,7 +57027,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -57053,7 +57053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -57079,7 +57079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -57105,7 +57105,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -57131,7 +57131,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -57157,7 +57157,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -57183,7 +57183,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -57209,7 +57209,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -57235,7 +57235,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -57261,7 +57261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -57287,7 +57287,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -57313,7 +57313,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -57339,7 +57339,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -57365,7 +57365,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -57391,7 +57391,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -57417,7 +57417,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -57443,7 +57443,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -57469,7 +57469,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -57495,7 +57495,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -57521,7 +57521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -57547,7 +57547,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -57573,7 +57573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -57599,7 +57599,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -57625,7 +57625,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -57651,7 +57651,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -57677,7 +57677,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -57703,7 +57703,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -57729,7 +57729,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -57755,7 +57755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -57781,7 +57781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -57807,7 +57807,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -57833,7 +57833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -57859,7 +57859,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -57885,7 +57885,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -57911,7 +57911,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -57937,7 +57937,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -57963,7 +57963,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -57989,7 +57989,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -58015,7 +58015,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -58041,7 +58041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -58067,7 +58067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -58093,7 +58093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -58119,7 +58119,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -58145,7 +58145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58171,7 +58171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -58197,7 +58197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -58223,7 +58223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -58249,7 +58249,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -58275,7 +58275,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -58301,7 +58301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -58327,7 +58327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -58353,7 +58353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -58379,7 +58379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -58405,7 +58405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -58431,7 +58431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -58457,7 +58457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -58483,7 +58483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -58509,7 +58509,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -58535,7 +58535,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -58561,7 +58561,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -58587,7 +58587,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -58613,7 +58613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -58639,7 +58639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -58665,7 +58665,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -58691,7 +58691,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -58717,7 +58717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -58743,7 +58743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -58769,7 +58769,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -58795,7 +58795,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -58821,7 +58821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -58847,7 +58847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -58873,7 +58873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -58899,7 +58899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -58925,7 +58925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -58951,7 +58951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -58977,7 +58977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -59003,7 +59003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -59029,7 +59029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59055,7 +59055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59081,7 +59081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -59107,7 +59107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -59133,7 +59133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -59159,7 +59159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -59185,7 +59185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -59211,7 +59211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -59237,7 +59237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -59263,7 +59263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -59289,7 +59289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -59315,7 +59315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -59341,7 +59341,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -59367,7 +59367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -59393,7 +59393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -59419,7 +59419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -59445,7 +59445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -59471,7 +59471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -59497,7 +59497,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -59523,7 +59523,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -59549,7 +59549,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -59575,7 +59575,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -59601,7 +59601,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -59627,7 +59627,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -59653,7 +59653,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -59679,7 +59679,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -59705,7 +59705,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -59731,7 +59731,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -59757,7 +59757,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -59783,7 +59783,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -59809,7 +59809,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59835,7 +59835,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -59861,7 +59861,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -59887,7 +59887,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -59993,7 +59993,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -60019,7 +60019,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -60095,7 +60095,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -60121,7 +60121,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -60197,7 +60197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -60223,7 +60223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -60299,7 +60299,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -60325,7 +60325,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -60401,7 +60401,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -60427,7 +60427,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -60503,7 +60503,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -60529,7 +60529,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -60605,7 +60605,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -60631,7 +60631,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -60707,7 +60707,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -60733,7 +60733,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -60809,7 +60809,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60835,7 +60835,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -60911,7 +60911,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -60937,7 +60937,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -61013,7 +61013,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -61039,7 +61039,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -61115,7 +61115,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -61141,7 +61141,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -61217,7 +61217,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -61243,7 +61243,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -61319,7 +61319,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -61345,7 +61345,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -61421,7 +61421,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -61447,7 +61447,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -61523,7 +61523,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -61549,7 +61549,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -61625,7 +61625,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -61651,7 +61651,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -61727,7 +61727,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -61753,7 +61753,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -61829,7 +61829,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -61855,7 +61855,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -61931,7 +61931,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -61957,7 +61957,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -62033,7 +62033,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -62059,7 +62059,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -62135,7 +62135,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -62161,7 +62161,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -62237,7 +62237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -62263,7 +62263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -62339,7 +62339,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -62365,7 +62365,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -62441,7 +62441,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -62467,7 +62467,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -62543,7 +62543,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62569,7 +62569,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -62645,7 +62645,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -62671,7 +62671,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -62747,7 +62747,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -62773,7 +62773,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -62849,7 +62849,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -62875,7 +62875,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -62951,7 +62951,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -62977,7 +62977,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -63053,7 +63053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -63079,7 +63079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -63155,7 +63155,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -63181,7 +63181,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -63257,7 +63257,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -63283,7 +63283,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -63359,7 +63359,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -63385,7 +63385,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -63461,7 +63461,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -63487,7 +63487,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -63563,7 +63563,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -63589,7 +63589,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -63665,7 +63665,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -63691,7 +63691,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -63767,7 +63767,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -63793,7 +63793,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -63869,7 +63869,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -63895,7 +63895,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -63971,7 +63971,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -63997,7 +63997,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -64073,7 +64073,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -64099,7 +64099,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -64175,7 +64175,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -64201,7 +64201,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -64277,7 +64277,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -64303,7 +64303,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -64379,7 +64379,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -64405,7 +64405,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -64481,7 +64481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -64507,7 +64507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -64583,7 +64583,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -64609,7 +64609,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -64685,7 +64685,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -64711,7 +64711,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -64787,7 +64787,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -64813,7 +64813,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -64889,7 +64889,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -64915,7 +64915,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -64991,7 +64991,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -65017,7 +65017,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -65093,7 +65093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -65119,7 +65119,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -65195,7 +65195,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -65221,7 +65221,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -65297,7 +65297,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -65323,7 +65323,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -65399,7 +65399,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -65425,7 +65425,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -65501,7 +65501,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -65527,7 +65527,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -65603,7 +65603,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -65629,7 +65629,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -65705,7 +65705,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -65731,7 +65731,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -65807,7 +65807,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -65833,7 +65833,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -65909,7 +65909,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -65935,7 +65935,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -66011,7 +66011,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -66037,7 +66037,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -66113,7 +66113,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -66139,7 +66139,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -66215,7 +66215,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66241,7 +66241,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -66317,7 +66317,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -66343,7 +66343,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -66419,7 +66419,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -66445,7 +66445,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -66521,7 +66521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -66547,7 +66547,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -66623,7 +66623,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -66649,7 +66649,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -66725,7 +66725,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -66751,7 +66751,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -66827,7 +66827,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -66853,7 +66853,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -66929,7 +66929,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -66955,7 +66955,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -67031,7 +67031,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -67057,7 +67057,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -67133,7 +67133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -67159,7 +67159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -67235,7 +67235,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -67261,7 +67261,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -67337,7 +67337,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -67363,7 +67363,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -67439,7 +67439,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -67465,7 +67465,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -67541,7 +67541,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -67567,7 +67567,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -67643,7 +67643,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -67669,7 +67669,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -67745,7 +67745,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -67771,7 +67771,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -67847,7 +67847,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -67873,7 +67873,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -67949,7 +67949,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -67975,7 +67975,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -68051,7 +68051,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -68077,7 +68077,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -68153,7 +68153,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -68179,7 +68179,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -68255,7 +68255,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -68281,7 +68281,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -68357,7 +68357,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -68383,7 +68383,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -68459,7 +68459,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -68485,7 +68485,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -68561,7 +68561,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -68587,7 +68587,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -68663,7 +68663,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -68689,7 +68689,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -68765,7 +68765,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -68791,7 +68791,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -68867,7 +68867,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -68893,7 +68893,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -68969,7 +68969,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -68995,7 +68995,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -69071,7 +69071,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -69097,7 +69097,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -69173,7 +69173,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -69199,7 +69199,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -69275,7 +69275,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -69301,7 +69301,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -69377,7 +69377,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -69403,7 +69403,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -69479,7 +69479,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69505,7 +69505,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -69581,7 +69581,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -69607,7 +69607,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -69713,7 +69713,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -69739,7 +69739,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -69765,7 +69765,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -69791,7 +69791,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -69817,7 +69817,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -69843,7 +69843,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -69869,7 +69869,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -69895,7 +69895,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -69921,7 +69921,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -69947,7 +69947,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -69973,7 +69973,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -69999,7 +69999,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -70025,7 +70025,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -70051,7 +70051,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -70077,7 +70077,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -70103,7 +70103,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -70129,7 +70129,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70155,7 +70155,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -70181,7 +70181,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -70207,7 +70207,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -70233,7 +70233,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -70259,7 +70259,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -70285,7 +70285,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -70311,7 +70311,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -70337,7 +70337,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -70363,7 +70363,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -70389,7 +70389,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -70415,7 +70415,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -70441,7 +70441,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -70467,7 +70467,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -70493,7 +70493,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -70519,7 +70519,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -70545,7 +70545,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -70571,7 +70571,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -70597,7 +70597,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -70623,7 +70623,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -70649,7 +70649,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -70675,7 +70675,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -70701,7 +70701,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -70727,7 +70727,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -70753,7 +70753,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -70779,7 +70779,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -70805,7 +70805,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -70831,7 +70831,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -70857,7 +70857,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -70883,7 +70883,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -70909,7 +70909,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -70935,7 +70935,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -70961,7 +70961,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -70987,7 +70987,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -71013,7 +71013,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71039,7 +71039,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -71065,7 +71065,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -71091,7 +71091,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -71117,7 +71117,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -71143,7 +71143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -71169,7 +71169,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -71195,7 +71195,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -71221,7 +71221,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -71247,7 +71247,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -71273,7 +71273,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -71299,7 +71299,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -71325,7 +71325,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -71351,7 +71351,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -71377,7 +71377,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -71403,7 +71403,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -71429,7 +71429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -71455,7 +71455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -71481,7 +71481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -71507,7 +71507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -71533,7 +71533,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -71559,7 +71559,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -71585,7 +71585,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -71611,7 +71611,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -71637,7 +71637,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -71663,7 +71663,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -71689,7 +71689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -71715,7 +71715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -71741,7 +71741,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -71767,7 +71767,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -71793,7 +71793,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -71819,7 +71819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -71845,7 +71845,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -71871,7 +71871,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -71897,7 +71897,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -71923,7 +71923,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -71949,7 +71949,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -71975,7 +71975,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -72001,7 +72001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -72027,7 +72027,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -72053,7 +72053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -72079,7 +72079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -72105,7 +72105,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -72131,7 +72131,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -72157,7 +72157,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -72183,7 +72183,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -72209,7 +72209,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -72235,7 +72235,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -72261,7 +72261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -72287,7 +72287,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -72313,7 +72313,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -72339,7 +72339,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -72365,7 +72365,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -72391,7 +72391,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -72417,7 +72417,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -72443,7 +72443,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -72469,7 +72469,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -72495,7 +72495,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -72521,7 +72521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -72547,7 +72547,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -72573,7 +72573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -72599,7 +72599,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -72625,7 +72625,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -72651,7 +72651,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -72677,7 +72677,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -72703,7 +72703,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -72729,7 +72729,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -72755,7 +72755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -72781,7 +72781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -72807,7 +72807,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -72833,7 +72833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -72859,7 +72859,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -72885,7 +72885,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72911,7 +72911,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -72937,7 +72937,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -72963,7 +72963,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -72989,7 +72989,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -73015,7 +73015,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -73041,7 +73041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -73067,7 +73067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -73093,7 +73093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -73119,7 +73119,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -73145,7 +73145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -73171,7 +73171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -73197,7 +73197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -73223,7 +73223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -73249,7 +73249,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -73275,7 +73275,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -73301,7 +73301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -73327,7 +73327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -73353,7 +73353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -73379,7 +73379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -73405,7 +73405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -73431,7 +73431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -73457,7 +73457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -73483,7 +73483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -73509,7 +73509,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -73535,7 +73535,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -73561,7 +73561,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -73587,7 +73587,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -73613,7 +73613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -73639,7 +73639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -73665,7 +73665,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -73691,7 +73691,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -73717,7 +73717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -73743,7 +73743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -73769,7 +73769,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -73795,7 +73795,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -73821,7 +73821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -73847,7 +73847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -73873,7 +73873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -73899,7 +73899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -73925,7 +73925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -73951,7 +73951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -73977,7 +73977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -74003,7 +74003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -74029,7 +74029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -74055,7 +74055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -74081,7 +74081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74107,7 +74107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -74133,7 +74133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -74159,7 +74159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -74185,7 +74185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -74211,7 +74211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -74237,7 +74237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -74263,7 +74263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -74289,7 +74289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -74315,7 +74315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -74341,7 +74341,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -74367,7 +74367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -74393,7 +74393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -74419,7 +74419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -74445,7 +74445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -74471,7 +74471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -74497,7 +74497,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -74523,7 +74523,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -74549,7 +74549,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74575,7 +74575,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -74601,7 +74601,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -74627,7 +74627,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -74733,7 +74733,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -74759,7 +74759,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -74835,7 +74835,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -74861,7 +74861,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -74937,7 +74937,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -74963,7 +74963,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -75039,7 +75039,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -75065,7 +75065,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -75141,7 +75141,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -75167,7 +75167,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -75243,7 +75243,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -75269,7 +75269,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -75345,7 +75345,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -75371,7 +75371,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -75447,7 +75447,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -75473,7 +75473,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -75549,7 +75549,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75575,7 +75575,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -75651,7 +75651,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -75677,7 +75677,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -75753,7 +75753,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -75779,7 +75779,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -75855,7 +75855,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -75881,7 +75881,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -75957,7 +75957,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -75983,7 +75983,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -76059,7 +76059,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -76085,7 +76085,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -76161,7 +76161,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -76187,7 +76187,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -76263,7 +76263,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -76289,7 +76289,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -76365,7 +76365,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -76391,7 +76391,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -76467,7 +76467,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -76493,7 +76493,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -76569,7 +76569,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -76595,7 +76595,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -76671,7 +76671,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -76697,7 +76697,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -76773,7 +76773,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -76799,7 +76799,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -76875,7 +76875,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -76901,7 +76901,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -76977,7 +76977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -77003,7 +77003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -77079,7 +77079,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -77105,7 +77105,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -77181,7 +77181,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -77207,7 +77207,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -77283,7 +77283,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77309,7 +77309,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -77385,7 +77385,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -77411,7 +77411,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -77487,7 +77487,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -77513,7 +77513,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -77589,7 +77589,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -77615,7 +77615,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -77691,7 +77691,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -77717,7 +77717,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -77793,7 +77793,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -77819,7 +77819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -77895,7 +77895,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -77921,7 +77921,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -77997,7 +77997,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -78023,7 +78023,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -78099,7 +78099,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -78125,7 +78125,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -78201,7 +78201,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -78227,7 +78227,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -78303,7 +78303,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -78329,7 +78329,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -78405,7 +78405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -78431,7 +78431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -78507,7 +78507,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -78533,7 +78533,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -78609,7 +78609,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -78635,7 +78635,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -78711,7 +78711,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -78737,7 +78737,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -78813,7 +78813,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -78839,7 +78839,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -78915,7 +78915,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -78941,7 +78941,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -79017,7 +79017,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -79043,7 +79043,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -79119,7 +79119,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -79145,7 +79145,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -79221,7 +79221,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -79247,7 +79247,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -79323,7 +79323,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -79349,7 +79349,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -79425,7 +79425,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -79451,7 +79451,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -79527,7 +79527,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -79553,7 +79553,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -79629,7 +79629,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -79655,7 +79655,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -79731,7 +79731,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -79757,7 +79757,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -79833,7 +79833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -79859,7 +79859,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -79935,7 +79935,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -79961,7 +79961,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -80037,7 +80037,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -80063,7 +80063,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -80139,7 +80139,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -80165,7 +80165,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -80241,7 +80241,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -80267,7 +80267,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -80343,7 +80343,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -80369,7 +80369,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -80445,7 +80445,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -80471,7 +80471,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -80547,7 +80547,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -80573,7 +80573,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -80649,7 +80649,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -80675,7 +80675,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -80751,7 +80751,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -80777,7 +80777,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -80853,7 +80853,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -80879,7 +80879,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -80955,7 +80955,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -80981,7 +80981,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -81057,7 +81057,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -81083,7 +81083,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -81159,7 +81159,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -81185,7 +81185,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -81261,7 +81261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -81287,7 +81287,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -81363,7 +81363,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -81389,7 +81389,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -81465,7 +81465,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -81491,7 +81491,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -81567,7 +81567,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -81593,7 +81593,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -81669,7 +81669,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -81695,7 +81695,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -81771,7 +81771,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -81797,7 +81797,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -81873,7 +81873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -81899,7 +81899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -81975,7 +81975,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -82001,7 +82001,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -82077,7 +82077,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -82103,7 +82103,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -82179,7 +82179,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -82205,7 +82205,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -82281,7 +82281,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -82307,7 +82307,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -82383,7 +82383,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -82409,7 +82409,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -82485,7 +82485,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -82511,7 +82511,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -82587,7 +82587,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -82613,7 +82613,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -82689,7 +82689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82715,7 +82715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -82791,7 +82791,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -82817,7 +82817,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -82893,7 +82893,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -82919,7 +82919,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -82995,7 +82995,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -83021,7 +83021,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -83097,7 +83097,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -83123,7 +83123,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -83199,7 +83199,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -83225,7 +83225,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -83301,7 +83301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -83327,7 +83327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -83403,7 +83403,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -83429,7 +83429,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -83505,7 +83505,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -83531,7 +83531,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -83607,7 +83607,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -83633,7 +83633,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -83709,7 +83709,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -83735,7 +83735,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -83811,7 +83811,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -83837,7 +83837,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -83913,7 +83913,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -83939,7 +83939,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -84015,7 +84015,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -84041,7 +84041,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -84117,7 +84117,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -84143,7 +84143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -84219,7 +84219,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84245,7 +84245,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84321,7 +84321,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -84347,7 +84347,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -84453,7 +84453,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -84479,7 +84479,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -84505,7 +84505,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -84531,7 +84531,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -84557,7 +84557,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -84583,7 +84583,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -84609,7 +84609,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -84635,7 +84635,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -84661,7 +84661,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -84687,7 +84687,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -84713,7 +84713,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -84739,7 +84739,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -84765,7 +84765,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -84791,7 +84791,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -84817,7 +84817,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -84843,7 +84843,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -84869,7 +84869,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84895,7 +84895,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -84921,7 +84921,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -84947,7 +84947,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -84973,7 +84973,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -84999,7 +84999,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -85025,7 +85025,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -85051,7 +85051,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -85077,7 +85077,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -85103,7 +85103,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -85129,7 +85129,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -85155,7 +85155,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -85181,7 +85181,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -85207,7 +85207,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -85233,7 +85233,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -85259,7 +85259,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -85285,7 +85285,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -85311,7 +85311,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -85337,7 +85337,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -85363,7 +85363,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -85389,7 +85389,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -85415,7 +85415,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -85441,7 +85441,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -85467,7 +85467,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -85493,7 +85493,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -85519,7 +85519,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -85545,7 +85545,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -85571,7 +85571,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -85597,7 +85597,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -85623,7 +85623,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -85649,7 +85649,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -85675,7 +85675,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -85701,7 +85701,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -85727,7 +85727,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -85753,7 +85753,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85779,7 +85779,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -85805,7 +85805,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -85831,7 +85831,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -85857,7 +85857,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -85883,7 +85883,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -85909,7 +85909,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -85935,7 +85935,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -85961,7 +85961,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -85987,7 +85987,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -86013,7 +86013,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -86039,7 +86039,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -86065,7 +86065,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -86091,7 +86091,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -86117,7 +86117,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -86143,7 +86143,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -86169,7 +86169,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -86195,7 +86195,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -86221,7 +86221,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -86247,7 +86247,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -86273,7 +86273,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -86299,7 +86299,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -86325,7 +86325,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -86351,7 +86351,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -86377,7 +86377,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -86403,7 +86403,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -86429,7 +86429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -86455,7 +86455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -86481,7 +86481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -86507,7 +86507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -86533,7 +86533,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -86559,7 +86559,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -86585,7 +86585,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -86611,7 +86611,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -86637,7 +86637,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -86663,7 +86663,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -86689,7 +86689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -86715,7 +86715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -86741,7 +86741,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -86767,7 +86767,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -86793,7 +86793,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -86819,7 +86819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -86845,7 +86845,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -86871,7 +86871,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -86897,7 +86897,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -86923,7 +86923,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -86949,7 +86949,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -86975,7 +86975,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -87001,7 +87001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -87027,7 +87027,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -87053,7 +87053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -87079,7 +87079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -87105,7 +87105,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -87131,7 +87131,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -87157,7 +87157,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -87183,7 +87183,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -87209,7 +87209,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -87235,7 +87235,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -87261,7 +87261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -87287,7 +87287,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -87313,7 +87313,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -87339,7 +87339,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -87365,7 +87365,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -87391,7 +87391,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -87417,7 +87417,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -87443,7 +87443,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -87469,7 +87469,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -87495,7 +87495,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -87521,7 +87521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -87547,7 +87547,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -87573,7 +87573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -87599,7 +87599,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -87625,7 +87625,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87651,7 +87651,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -87677,7 +87677,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -87703,7 +87703,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -87729,7 +87729,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -87755,7 +87755,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -87781,7 +87781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -87807,7 +87807,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -87833,7 +87833,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -87859,7 +87859,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -87885,7 +87885,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -87911,7 +87911,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -87937,7 +87937,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -87963,7 +87963,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -87989,7 +87989,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -88015,7 +88015,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -88041,7 +88041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -88067,7 +88067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -88093,7 +88093,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -88119,7 +88119,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -88145,7 +88145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -88171,7 +88171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -88197,7 +88197,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -88223,7 +88223,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -88249,7 +88249,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -88275,7 +88275,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -88301,7 +88301,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -88327,7 +88327,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -88353,7 +88353,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -88379,7 +88379,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -88405,7 +88405,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -88431,7 +88431,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -88457,7 +88457,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -88483,7 +88483,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -88509,7 +88509,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88535,7 +88535,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -88561,7 +88561,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -88587,7 +88587,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -88613,7 +88613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -88639,7 +88639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -88665,7 +88665,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -88691,7 +88691,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -88717,7 +88717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -88743,7 +88743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -88769,7 +88769,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -88795,7 +88795,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -88821,7 +88821,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -88847,7 +88847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -88873,7 +88873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -88899,7 +88899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -88925,7 +88925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -88951,7 +88951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -88977,7 +88977,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -89003,7 +89003,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -89029,7 +89029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -89055,7 +89055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -89081,7 +89081,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -89107,7 +89107,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -89133,7 +89133,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -89159,7 +89159,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -89185,7 +89185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -89211,7 +89211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -89237,7 +89237,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -89263,7 +89263,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -89289,7 +89289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89315,7 +89315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -89341,7 +89341,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -89367,7 +89367,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -89473,7 +89473,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -89499,7 +89499,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 5.0, "wellLocation": { "offset": { @@ -89575,7 +89575,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -89601,7 +89601,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 10.0, "wellLocation": { "offset": { @@ -89677,7 +89677,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -89703,7 +89703,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -89779,7 +89779,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -89805,7 +89805,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -89881,7 +89881,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -89907,7 +89907,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -89983,7 +89983,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -90009,7 +90009,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -90085,7 +90085,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -90111,7 +90111,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 100.0, "wellLocation": { "offset": { @@ -90187,7 +90187,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -90213,7 +90213,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -90289,7 +90289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90315,7 +90315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -90391,7 +90391,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -90417,7 +90417,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -90493,7 +90493,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -90519,7 +90519,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 92.0, "wellLocation": { "offset": { @@ -90595,7 +90595,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -90621,7 +90621,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 88.0, "wellLocation": { "offset": { @@ -90697,7 +90697,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -90723,7 +90723,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -90799,7 +90799,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -90825,7 +90825,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -90901,7 +90901,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -90927,7 +90927,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -91003,7 +91003,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -91029,7 +91029,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 87.0, "wellLocation": { "offset": { @@ -91105,7 +91105,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -91131,7 +91131,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 82.0, "wellLocation": { "offset": { @@ -91207,7 +91207,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -91233,7 +91233,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 36.0, "wellLocation": { "offset": { @@ -91309,7 +91309,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -91335,7 +91335,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 78.0, "wellLocation": { "offset": { @@ -91411,7 +91411,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -91437,7 +91437,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -91513,7 +91513,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -91539,7 +91539,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -91615,7 +91615,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -91641,7 +91641,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 63.0, "wellLocation": { "offset": { @@ -91717,7 +91717,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -91743,7 +91743,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -91819,7 +91819,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -91845,7 +91845,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -91921,7 +91921,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -91947,7 +91947,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -92023,7 +92023,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -92049,7 +92049,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -92125,7 +92125,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -92151,7 +92151,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -92227,7 +92227,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -92253,7 +92253,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -92329,7 +92329,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -92355,7 +92355,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -92431,7 +92431,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -92457,7 +92457,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 52.0, "wellLocation": { "offset": { @@ -92533,7 +92533,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -92559,7 +92559,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -92635,7 +92635,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -92661,7 +92661,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -92737,7 +92737,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -92763,7 +92763,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 86.0, "wellLocation": { "offset": { @@ -92839,7 +92839,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -92865,7 +92865,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -92941,7 +92941,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -92967,7 +92967,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -93043,7 +93043,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -93069,7 +93069,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 96.0, "wellLocation": { "offset": { @@ -93145,7 +93145,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -93171,7 +93171,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 72.0, "wellLocation": { "offset": { @@ -93247,7 +93247,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -93273,7 +93273,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -93349,7 +93349,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -93375,7 +93375,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -93451,7 +93451,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -93477,7 +93477,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 41.0, "wellLocation": { "offset": { @@ -93553,7 +93553,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -93579,7 +93579,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -93655,7 +93655,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -93681,7 +93681,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -93757,7 +93757,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -93783,7 +93783,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -93859,7 +93859,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -93885,7 +93885,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -93961,7 +93961,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -93987,7 +93987,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 42.0, "wellLocation": { "offset": { @@ -94063,7 +94063,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -94089,7 +94089,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -94165,7 +94165,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -94191,7 +94191,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 48.0, "wellLocation": { "offset": { @@ -94267,7 +94267,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -94293,7 +94293,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 73.0, "wellLocation": { "offset": { @@ -94369,7 +94369,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -94395,7 +94395,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 84.0, "wellLocation": { "offset": { @@ -94471,7 +94471,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -94497,7 +94497,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -94573,7 +94573,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -94599,7 +94599,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 74.0, "wellLocation": { "offset": { @@ -94675,7 +94675,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -94701,7 +94701,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 80.0, "wellLocation": { "offset": { @@ -94777,7 +94777,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -94803,7 +94803,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -94879,7 +94879,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -94905,7 +94905,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -94981,7 +94981,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -95007,7 +95007,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -95083,7 +95083,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -95109,7 +95109,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -95185,7 +95185,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -95211,7 +95211,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 98.0, "wellLocation": { "offset": { @@ -95287,7 +95287,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -95313,7 +95313,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -95389,7 +95389,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -95415,7 +95415,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -95491,7 +95491,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -95517,7 +95517,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -95593,7 +95593,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -95619,7 +95619,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -95695,7 +95695,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95721,7 +95721,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -95797,7 +95797,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -95823,7 +95823,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -95899,7 +95899,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -95925,7 +95925,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 44.0, "wellLocation": { "offset": { @@ -96001,7 +96001,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -96027,7 +96027,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 89.0, "wellLocation": { "offset": { @@ -96103,7 +96103,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -96129,7 +96129,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -96205,7 +96205,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -96231,7 +96231,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 67.0, "wellLocation": { "offset": { @@ -96307,7 +96307,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -96333,7 +96333,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -96409,7 +96409,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -96435,7 +96435,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 79.0, "wellLocation": { "offset": { @@ -96511,7 +96511,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -96537,7 +96537,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -96613,7 +96613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -96639,7 +96639,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 23.0, "wellLocation": { "offset": { @@ -96715,7 +96715,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -96741,7 +96741,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 26.0, "wellLocation": { "offset": { @@ -96817,7 +96817,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -96843,7 +96843,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -96919,7 +96919,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -96945,7 +96945,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -97021,7 +97021,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -97047,7 +97047,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 38.0, "wellLocation": { "offset": { @@ -97123,7 +97123,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -97149,7 +97149,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 99.0, "wellLocation": { "offset": { @@ -97225,7 +97225,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -97251,7 +97251,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 21.0, "wellLocation": { "offset": { @@ -97327,7 +97327,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -97353,7 +97353,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 59.0, "wellLocation": { "offset": { @@ -97429,7 +97429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97455,7 +97455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -97531,7 +97531,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -97557,7 +97557,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -97633,7 +97633,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -97659,7 +97659,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 28.0, "wellLocation": { "offset": { @@ -97735,7 +97735,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -97761,7 +97761,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 51.0, "wellLocation": { "offset": { @@ -97837,7 +97837,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -97863,7 +97863,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 34.0, "wellLocation": { "offset": { @@ -97939,7 +97939,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -97965,7 +97965,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 27.0, "wellLocation": { "offset": { @@ -98041,7 +98041,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -98067,7 +98067,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 60.0, "wellLocation": { "offset": { @@ -98143,7 +98143,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -98169,7 +98169,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 33.0, "wellLocation": { "offset": { @@ -98245,7 +98245,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -98271,7 +98271,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 61.0, "wellLocation": { "offset": { @@ -98347,7 +98347,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -98373,7 +98373,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 69.0, "wellLocation": { "offset": { @@ -98449,7 +98449,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -98475,7 +98475,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 47.0, "wellLocation": { "offset": { @@ -98551,7 +98551,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -98577,7 +98577,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 46.0, "wellLocation": { "offset": { @@ -98653,7 +98653,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -98679,7 +98679,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 93.0, "wellLocation": { "offset": { @@ -98755,7 +98755,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -98781,7 +98781,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 54.0, "wellLocation": { "offset": { @@ -98857,7 +98857,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -98883,7 +98883,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 65.0, "wellLocation": { "offset": { @@ -98959,7 +98959,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -98985,7 +98985,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 58.0, "wellLocation": { "offset": { @@ -99061,7 +99061,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -99087,7 +99087,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 37.0, "wellLocation": { "offset": { @@ -99144,7 +99144,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right.py", + "name": "Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0f31fd0836][OT2_P1000SLeft_None_6_1_SimpleTransfer].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c064d0de2c][OT2_S_v6_P1000S_None_SimpleTransfer].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0f31fd0836][OT2_P1000SLeft_None_6_1_SimpleTransfer].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c064d0de2c][OT2_S_v6_P1000S_None_SimpleTransfer].json index 044100d1a50..f42737b3020 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0f31fd0836][OT2_P1000SLeft_None_6_1_SimpleTransfer].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c064d0de2c][OT2_S_v6_P1000S_None_SimpleTransfer].json @@ -1825,7 +1825,7 @@ "errors": [], "files": [ { - "name": "OT2_P1000SLeft_None_6_1_SimpleTransfer.json", + "name": "OT2_S_v6_P1000S_None_SimpleTransfer.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[695d29455b][OT2_None_None_TC_2_17_VerifyThermocyclerLoadedSlots].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c195291f84][OT2_S_v2_17_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json similarity index 97% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[695d29455b][OT2_None_None_TC_2_17_VerifyThermocyclerLoadedSlots].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c195291f84][OT2_S_v2_17_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json index 4b0477f0c6a..f2f2d4153be 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[695d29455b][OT2_None_None_TC_2_17_VerifyThermocyclerLoadedSlots].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c195291f84][OT2_S_v2_17_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json @@ -127,7 +127,7 @@ "errors": [], "files": [ { - "name": "OT2_None_None_TC_2_17_VerifyThermocyclerLoadedSlots.py", + "name": "OT2_S_v2_17_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8944a283da][Flex_None_None_TC_2_17_verifyThermocyclerLoadedSlots].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c1c04baffd][Flex_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots].json similarity index 95% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8944a283da][Flex_None_None_TC_2_17_verifyThermocyclerLoadedSlots].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c1c04baffd][Flex_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots].json index 0568235766a..a04aaad78f3 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[8944a283da][Flex_None_None_TC_2_17_verifyThermocyclerLoadedSlots].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c1c04baffd][Flex_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots].json @@ -137,7 +137,7 @@ "errorInfo": { "args": "()", "class": "AssertionError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_TC_2_17_verifyThermocyclerLoadedSlots.py\", line 13, in run\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots.py\", line 13, in run\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -147,7 +147,7 @@ ], "files": [ { - "name": "Flex_None_None_TC_2_17_verifyThermocyclerLoadedSlots.py", + "name": "Flex_S_v2_17_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[69f47f8bcc][OT2_None_None_TC_2_15_VerifyThermocyclerLoadedSlots].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c3098303ad][OT2_S_v2_15_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json similarity index 98% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[69f47f8bcc][OT2_None_None_TC_2_15_VerifyThermocyclerLoadedSlots].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c3098303ad][OT2_S_v2_15_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json index b81d62a94d8..3c4cb61561e 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[69f47f8bcc][OT2_None_None_TC_2_15_VerifyThermocyclerLoadedSlots].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c3098303ad][OT2_S_v2_15_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json @@ -127,7 +127,7 @@ "errors": [], "files": [ { - "name": "OT2_None_None_TC_2_15_VerifyThermocyclerLoadedSlots.py", + "name": "OT2_S_v2_15_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2a32a763f5][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c745e5824a][Flex_S_v2_16_P1000_96_GRIP_DeckConfiguration1NoModules].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2a32a763f5][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c745e5824a][Flex_S_v2_16_P1000_96_GRIP_DeckConfiguration1NoModules].json index 7dc9a75b76e..6bff22c30f4 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2a32a763f5][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c745e5824a][Flex_S_v2_16_P1000_96_GRIP_DeckConfiguration1NoModules].json @@ -11206,7 +11206,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules.py", + "name": "Flex_S_v2_16_P1000_96_GRIP_DeckConfiguration1NoModules.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6258435dc4][OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c821e64fad][OT2_S_v2_13_P300M_P20S_MM_TC_TM_Smoke620Release].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6258435dc4][OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c821e64fad][OT2_S_v2_13_P300M_P20S_MM_TC_TM_Smoke620Release].json index b6c92f8526c..47f9ac631a6 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6258435dc4][OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c821e64fad][OT2_S_v2_13_P300M_P20S_MM_TC_TM_Smoke620Release].json @@ -9834,7 +9834,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release.py", + "name": "OT2_S_v2_13_P300M_P20S_MM_TC_TM_Smoke620Release.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4835239037][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c9e6e3d59d][OT2_X_v4_P300M_P20S_MM_TC1_TM_e2eTests].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4835239037][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c9e6e3d59d][OT2_X_v4_P300M_P20S_MM_TC1_TM_e2eTests].json index 636e3ae1cbc..973666af416 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4835239037][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c9e6e3d59d][OT2_X_v4_P300M_P20S_MM_TC1_TM_e2eTests].json @@ -6975,7 +6975,7 @@ ], "files": [ { - "name": "OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error.json", + "name": "OT2_X_v4_P300M_P20S_MM_TC1_TM_e2eTests.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6b4d75cb04][OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cb5adc3d23][OT2_S_v6_P20S_P300M_TransferReTransferLiquid].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6b4d75cb04][OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cb5adc3d23][OT2_S_v6_P20S_P300M_TransferReTransferLiquid].json index 36e8ee71f89..70e67b94ed3 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6b4d75cb04][OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cb5adc3d23][OT2_S_v6_P20S_P300M_TransferReTransferLiquid].json @@ -10674,7 +10674,7 @@ "errors": [], "files": [ { - "name": "OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid.json", + "name": "OT2_S_v6_P20S_P300M_TransferReTransferLiquid.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d13f3b33af][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d13f3b33af][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum].json deleted file mode 100644 index 921eb835a80..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d13f3b33af][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "ParameterDefinitionError [line 104]: Only parameters of type float or int can have a minimum and maximum", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "opentrons.protocols.parameters.types.ParameterDefinitionError: Only parameters of type float or int can have a minimum and maximum", - "errorCode": "4000", - "errorInfo": { - "args": "('Only parameters of type float or int can have a minimum and maximum',)", - "class": "ParameterDefinitionError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum.py\", line 104, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 55, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 73, in __init__\n validation.validate_options(default, minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 228, in validate_options\n _validate_min_and_max(minimum, maximum, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 197, in _validate_min_and_max\n raise ParameterDefinitionError(\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_maximum.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Description Too Long 2.18" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f91ecb541c][OT2_P300M_P20S_TC_HS_TM_2_17_SmokeTestV3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d48bc4f0c9][OT2_S_v2_17_P300M_P20S_HS_TC_TM_SmokeTestV3].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f91ecb541c][OT2_P300M_P20S_TC_HS_TM_2_17_SmokeTestV3].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d48bc4f0c9][OT2_S_v2_17_P300M_P20S_HS_TC_TM_SmokeTestV3].json index 0245a572ca9..d2a73ab17e9 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f91ecb541c][OT2_P300M_P20S_TC_HS_TM_2_17_SmokeTestV3].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d48bc4f0c9][OT2_S_v2_17_P300M_P20S_HS_TC_TM_SmokeTestV3].json @@ -15549,7 +15549,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_TC_HS_TM_2_17_SmokeTestV3.py", + "name": "OT2_S_v2_17_P300M_P20S_HS_TC_TM_SmokeTestV3.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[78960c4c8e][OT2_P300S_Twinning_Error].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d6026e11c5][OT2_X_v2_7_P300S_TwinningError].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[78960c4c8e][OT2_P300S_Twinning_Error].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d6026e11c5][OT2_X_v2_7_P300S_TwinningError].json index 07585c1c1c7..a67595aa67c 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[78960c4c8e][OT2_P300S_Twinning_Error].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d6026e11c5][OT2_X_v2_7_P300S_TwinningError].json @@ -2714,7 +2714,7 @@ "class": "AttributeError", "name": "pair_with", "obj": "P300 Single-Channel GEN2 on left mount", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_P300S_Twinning_Error.py\", line 23, in run\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_X_v2_7_P300S_TwinningError.py\", line 23, in run\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -2724,7 +2724,7 @@ ], "files": [ { - "name": "OT2_P300S_Twinning_Error.py", + "name": "OT2_X_v2_7_P300S_TwinningError.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d6a37191cf][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d6a37191cf][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum].json deleted file mode 100644 index eeeec986698..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d6a37191cf][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "ParameterDefinitionError [line 95]: Only parameters of type float or int can have a minimum and maximum", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "opentrons.protocols.parameters.types.ParameterDefinitionError: Only parameters of type float or int can have a minimum and maximum", - "errorCode": "4000", - "errorInfo": { - "args": "('Only parameters of type float or int can have a minimum and maximum',)", - "class": "ParameterDefinitionError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum.py\", line 95, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 55, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 73, in __init__\n validation.validate_options(default, minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 228, in validate_options\n _validate_min_and_max(minimum, maximum, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 197, in _validate_min_and_max\n raise ParameterDefinitionError(\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_minimum.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Description Too Long 2.18" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[35d0afdaa6][v2_18_None_None_duplicateChoiceValue].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d7e862d601][OT2_S_v2_18_None_None_duplicateChoiceValue].json similarity index 96% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[35d0afdaa6][v2_18_None_None_duplicateChoiceValue].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d7e862d601][OT2_S_v2_18_None_None_duplicateChoiceValue].json index afbb08ee761..792ce852c07 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[35d0afdaa6][v2_18_None_None_duplicateChoiceValue].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d7e862d601][OT2_S_v2_18_None_None_duplicateChoiceValue].json @@ -27,6 +27,10 @@ }, "errors": [], "files": [ + { + "name": "OT2_S_v2_18_None_None_duplicateChoiceValue.py", + "role": "main" + }, { "name": "cpx_4_tuberack_100ul.json", "role": "labware" @@ -46,10 +50,6 @@ { "name": "sample_labware.json", "role": "labware" - }, - { - "name": "v2_18_None_None_duplicateChoiceValue.py", - "role": "main" } ], "labware": [], diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7840348786][Flex_P1000_96_TC_2_16_PartialTipPickupSingle].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d8cb88b3b2][Flex_S_v2_16_P1000_96_TC_PartialTipPickupSingle].json similarity index 97% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7840348786][Flex_P1000_96_TC_2_16_PartialTipPickupSingle].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d8cb88b3b2][Flex_S_v2_16_P1000_96_TC_PartialTipPickupSingle].json index 79f4230779e..5f18a326b43 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[7840348786][Flex_P1000_96_TC_2_16_PartialTipPickupSingle].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d8cb88b3b2][Flex_S_v2_16_P1000_96_TC_PartialTipPickupSingle].json @@ -2,12 +2,14 @@ "commands": [ { "commandType": "home", + "notes": [], "params": {}, "result": {}, "status": "succeeded" }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "opentrons_flex_96_tiprack_50ul", "location": { @@ -1159,6 +1161,7 @@ }, { "commandType": "loadPipette", + "notes": [], "params": { "mount": "left", "pipetteName": "p1000_96" @@ -1168,6 +1171,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_200ul_flat", "location": { @@ -2328,6 +2332,7 @@ }, { "commandType": "loadLabware", + "notes": [], "params": { "loadName": "nest_96_wellplate_200ul_flat", "location": { @@ -3485,120 +3490,6 @@ } }, "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "params": { - "configurationParams": { - "primaryNozzle": "H12", - "style": "SINGLE" - } - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "params": { - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "status": "succeeded" - }, - { - "commandType": "aspirate", - "params": { - "flowRate": 160.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.8 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.28, - "y": 145.18, - "z": 4.5 - }, - "volume": 50.0 - }, - "status": "succeeded" - }, - { - "commandType": "dispense", - "params": { - "flowRate": 160.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.8 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 50.28, - "y": 172.18, - "z": 4.5 - }, - "volume": 20.0 - }, - "status": "succeeded" - }, - { - "commandType": "moveToAddressableAreaForDropTip", - "params": { - "addressableAreaName": "movableTrashA3", - "alternateDropLocation": true, - "forceDirect": false, - "ignoreTipConfiguration": true, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - } - }, - "result": { - "position": { - "x": 466.25, - "y": 364.0, - "z": 40.0 - } - }, - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "params": {}, - "result": {}, - "status": "succeeded" } ], "config": { @@ -3608,10 +3499,30 @@ ], "protocolType": "python" }, - "errors": [], + "errors": [ + { + "detail": "ValueError [line 16]: Nozzle layout configuration of style SINGLE is currently unsupported.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "ValueError: Nozzle layout configuration of style SINGLE is currently unsupported.", + "errorCode": "4000", + "errorInfo": { + "args": "('Nozzle layout configuration of style SINGLE is currently unsupported.',)", + "class": "ValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_S_v2_16_P1000_96_TC_PartialTipPickupSingle.py\", line 16, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/instrument_context.py\", line 1953, in configure_nozzle_layout\n raise ValueError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], "files": [ { - "name": "Flex_P1000_96_TC_2_16_PartialTipPickupSingle.py", + "name": "Flex_S_v2_16_P1000_96_TC_PartialTipPickupSingle.py", "role": "main" }, { @@ -3667,5 +3578,6 @@ "pipetteName": "p1000_96" } ], - "robotType": "OT-3 Standard" + "robotType": "OT-3 Standard", + "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[da8add28b8][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[da8add28b8][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name].json deleted file mode 100644 index 1c1fa64f22c..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[da8add28b8][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "TypeError [line 30]: object of type 'int' has no len()", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "TypeError: object of type 'int' has no len()", - "errorCode": "4000", - "errorInfo": { - "args": "(\"object of type 'int' has no len()\",)", - "class": "TypeError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name.py\", line 30, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 55, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 56, in __init__\n self._display_name = validation.ensure_display_name(display_name)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 21, in ensure_display_name\n if len(display_name) > DISPLAY_NAME_MAX_LEN:\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Description Too Long 2.18" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[caee1acfad][OT2_None_None_TC_2_16_VerifyThermocyclerLoadedSlots].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[dbba7a71a8][OT2_S_v2_16_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json similarity index 97% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[caee1acfad][OT2_None_None_TC_2_16_VerifyThermocyclerLoadedSlots].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[dbba7a71a8][OT2_S_v2_16_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json index 3182743836c..4b308445002 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[caee1acfad][OT2_None_None_TC_2_16_VerifyThermocyclerLoadedSlots].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[dbba7a71a8][OT2_S_v2_16_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots].json @@ -127,7 +127,7 @@ "errors": [], "files": [ { - "name": "OT2_None_None_TC_2_16_VerifyThermocyclerLoadedSlots.py", + "name": "OT2_S_v2_16_NO_PIPETTES_TC_VerifyThermocyclerLoadedSlots.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5931902632][Flex_None_None_TC_2_16_AnalysisError_TrashBinAndThermocyclerConflict].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[de4249ddfb][Flex_X_v2_16_NO_PIPETTES_TC_TrashBinAndThermocyclerConflict].json similarity index 78% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5931902632][Flex_None_None_TC_2_16_AnalysisError_TrashBinAndThermocyclerConflict].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[de4249ddfb][Flex_X_v2_16_NO_PIPETTES_TC_TrashBinAndThermocyclerConflict].json index a703ee69fb4..e367d7faa2d 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5931902632][Flex_None_None_TC_2_16_AnalysisError_TrashBinAndThermocyclerConflict].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[de4249ddfb][Flex_X_v2_16_NO_PIPETTES_TC_TrashBinAndThermocyclerConflict].json @@ -137,7 +137,7 @@ "errorInfo": { "args": "('thermocyclerModuleV2 in slot B1 prevents trash bin from using slot A1.',)", "class": "DeckConflictError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_TC_2_16_AnalysisError_TrashBinAndThermocyclerConflict.py\", line 13, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 518, in load_trash_bin\n trash_bin = self._core.load_trash_bin(slot_name, addressable_area_name)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 528, in load_trash_bin\n self._add_disposal_location_to_engine(trash_bin)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 148, in _add_disposal_location_to_engine\n deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/deck_conflict.py\", line 203, in check\n wrapped_deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/motion_planning/deck_conflict.py\", line 210, in check\n raise DeckConflictError(\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_16_NO_PIPETTES_TC_TrashBinAndThermocyclerConflict.py\", line 13, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 518, in load_trash_bin\n trash_bin = self._core.load_trash_bin(slot_name, addressable_area_name)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 528, in load_trash_bin\n self._add_disposal_location_to_engine(trash_bin)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 148, in _add_disposal_location_to_engine\n deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/deck_conflict.py\", line 203, in check\n wrapped_deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/motion_planning/deck_conflict.py\", line 210, in check\n raise DeckConflictError(\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -147,7 +147,7 @@ ], "files": [ { - "name": "Flex_None_None_TC_2_16_AnalysisError_TrashBinAndThermocyclerConflict.py", + "name": "Flex_X_v2_16_NO_PIPETTES_TC_TrashBinAndThermocyclerConflict.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[53e75c4553][Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[de842b7217][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TM_OmegaHDQDNAExtraction].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[53e75c4553][Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[de842b7217][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TM_OmegaHDQDNAExtraction].json index 0ea18a09995..c9208c66d22 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[53e75c4553][Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[de842b7217][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TM_OmegaHDQDNAExtraction].json @@ -13337,7 +13337,7 @@ ], "files": [ { - "name": "Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel.py", + "name": "Flex_S_v2_15_P1000_96_GRIP_HS_MB_TM_OmegaHDQDNAExtraction.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e3ad5463a4][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e3ad5463a4][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit].json deleted file mode 100644 index 51eaf76cc51..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e3ad5463a4][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "TypeError [line 113]: object of type 'int' has no len()", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "TypeError: object of type 'int' has no len()", - "errorCode": "4000", - "errorInfo": { - "args": "(\"object of type 'int' has no len()\",)", - "class": "TypeError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit.py\", line 113, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 55, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 59, in __init__\n self._unit = validation.ensure_unit_string_length(unit)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 50, in ensure_unit_string_length\n if unit is not None and len(unit) > UNIT_MAX_LEN:\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_unit.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Description Too Long 2.18" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[753ac8811f][OT2_None_None_2_13_PythonSyntaxError].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e42e36e3ca][OT2_X_v2_13_None_None_PythonSyntaxError].json similarity index 95% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[753ac8811f][OT2_None_None_2_13_PythonSyntaxError].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e42e36e3ca][OT2_X_v2_13_None_None_PythonSyntaxError].json index af560dfb9f3..7e05bcc5181 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[753ac8811f][OT2_None_None_2_13_PythonSyntaxError].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e42e36e3ca][OT2_X_v2_13_None_None_PythonSyntaxError].json @@ -31,7 +31,7 @@ "msg": "No module named 'superspecialmagic'", "name": "superspecialmagic", "path": "None", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 84, in _run\n await self._run_func()\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 61, in _do_run\n await func(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/protocol_runner.py\", line 219, in run_func\n await self._legacy_executor.execute(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/legacy_wrappers.py\", line 180, in execute\n await to_thread.run_sync(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/to_thread.py\", line 33, in run_sync\n return await get_asynclib().run_sync_in_worker_thread(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 877, in run_sync_in_worker_thread\n return await future\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 807, in run\n result = context.run(func, *args)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute.py\", line 40, in run_protocol\n run_python(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 95, in run_python\n exec(proto.contents, new_globs)\n\n File \"OT2_None_None_2_13_PythonSyntaxError.py\", line 4, in \n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 84, in _run\n await self._run_func()\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 61, in _do_run\n await func(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/protocol_runner.py\", line 219, in run_func\n await self._legacy_executor.execute(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/legacy_wrappers.py\", line 180, in execute\n await to_thread.run_sync(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/to_thread.py\", line 33, in run_sync\n return await get_asynclib().run_sync_in_worker_thread(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 877, in run_sync_in_worker_thread\n return await future\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 807, in run\n result = context.run(func, *args)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute.py\", line 40, in run_protocol\n run_python(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 95, in run_python\n exec(proto.contents, new_globs)\n\n File \"OT2_X_v2_13_None_None_PythonSyntaxError.py\", line 4, in \n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -41,7 +41,7 @@ ], "files": [ { - "name": "OT2_None_None_2_13_PythonSyntaxError.py", + "name": "OT2_X_v2_13_None_None_PythonSyntaxError.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5635695ed6][OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e4660ca6df][OT2_S_v4_P300S_None_MM_TM_TM_MOAMTemps].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5635695ed6][OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e4660ca6df][OT2_S_v4_P300S_None_MM_TM_TM_MOAMTemps].json index 03d82f46aea..e6aadeb2fca 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[5635695ed6][OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e4660ca6df][OT2_S_v4_P300S_None_MM_TM_TM_MOAMTemps].json @@ -2469,7 +2469,7 @@ "errors": [], "files": [ { - "name": "OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps.json", + "name": "OT2_S_v4_P300S_None_MM_TM_TM_MOAMTemps.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e496fec176][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e496fec176][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default].json index 2b7469934b5..4bb8dc2ba41 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e496fec176][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e496fec176][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 2, - "command_output": "Usage: python -m opentrons.cli analyze [OPTIONS] FILES...\nTry 'python -m opentrons.cli analyze --help' for help.\n\nError: Invalid value for 'FILES...': Path '/var/lib/ot/protocols/generated_protocols/Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default.py' does not exist.\n" + "detail": "ParameterValueError [line 73]: Parameter default 6 has type 'int', but must be of type 'str'.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter default 6 has type 'int', but must be of type 'str'.", + "errorCode": "4000", + "errorInfo": { + "args": "(\"Parameter default 6 has type 'int', but must be of type 'str'.\",)", + "class": "ParameterValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default.py\", line 73, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 152, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 73, in __init__\n validation.validate_options(default, minimum, maximum, choices, parameter_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 253, in validate_options\n raise ParameterValueError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_default.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Description Too Long 2.18" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0400decc88][Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e907467039][Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAPrep24x].json similarity index 98% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0400decc88][Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e907467039][Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAPrep24x].json index 69b643fbc46..48382e2d0ac 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0400decc88][Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e907467039][Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAPrep24x].json @@ -8325,7 +8325,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -8351,7 +8351,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -8377,7 +8377,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -8403,7 +8403,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -8429,7 +8429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -8455,7 +8455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -8481,7 +8481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 20.0, "wellLocation": { "offset": { @@ -8507,7 +8507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 20.0, "wellLocation": { "offset": { @@ -8557,7 +8557,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -8607,7 +8607,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -8633,7 +8633,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -8683,7 +8683,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -8709,7 +8709,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -8759,7 +8759,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -8785,7 +8785,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -8835,7 +8835,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -8861,7 +8861,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -9007,7 +9007,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9033,7 +9033,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9059,7 +9059,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9085,7 +9085,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9111,7 +9111,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9137,7 +9137,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9163,7 +9163,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 20.0, "wellLocation": { "offset": { @@ -9189,7 +9189,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 20.0, "wellLocation": { "offset": { @@ -9239,7 +9239,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -9289,7 +9289,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -9315,7 +9315,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -9365,7 +9365,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -9391,7 +9391,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -9441,7 +9441,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -9467,7 +9467,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -9517,7 +9517,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -9543,7 +9543,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -9689,7 +9689,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9715,7 +9715,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9741,7 +9741,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9767,7 +9767,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9793,7 +9793,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9819,7 +9819,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 30.0, "wellLocation": { "offset": { @@ -9845,7 +9845,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 20.0, "wellLocation": { "offset": { @@ -9871,7 +9871,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 20.0, "wellLocation": { "offset": { @@ -9921,7 +9921,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -9971,7 +9971,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -9997,7 +9997,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10047,7 +10047,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -10073,7 +10073,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -10123,7 +10123,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10149,7 +10149,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10199,7 +10199,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 40.0, "wellLocation": { "offset": { @@ -10225,7 +10225,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -10492,7 +10492,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -10518,7 +10518,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -10568,7 +10568,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10594,7 +10594,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10620,7 +10620,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10646,7 +10646,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10672,7 +10672,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10698,7 +10698,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10724,7 +10724,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10750,7 +10750,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10776,7 +10776,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10802,7 +10802,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10828,7 +10828,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10854,7 +10854,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10880,7 +10880,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10906,7 +10906,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10932,7 +10932,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10958,7 +10958,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -10984,7 +10984,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11010,7 +11010,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11036,7 +11036,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11062,7 +11062,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11138,7 +11138,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -11164,7 +11164,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -11214,7 +11214,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11240,7 +11240,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11266,7 +11266,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11292,7 +11292,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11318,7 +11318,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11344,7 +11344,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11370,7 +11370,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11396,7 +11396,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11422,7 +11422,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11448,7 +11448,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11474,7 +11474,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11500,7 +11500,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11526,7 +11526,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11552,7 +11552,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11578,7 +11578,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11604,7 +11604,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11630,7 +11630,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11656,7 +11656,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11682,7 +11682,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11708,7 +11708,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11784,7 +11784,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -11810,7 +11810,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -11860,7 +11860,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11886,7 +11886,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11912,7 +11912,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11938,7 +11938,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11964,7 +11964,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -11990,7 +11990,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12016,7 +12016,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12042,7 +12042,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12068,7 +12068,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12094,7 +12094,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12120,7 +12120,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12146,7 +12146,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12172,7 +12172,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12198,7 +12198,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12224,7 +12224,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12250,7 +12250,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12276,7 +12276,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12302,7 +12302,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12328,7 +12328,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12354,7 +12354,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12571,7 +12571,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12630,7 +12630,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12680,7 +12680,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12715,7 +12715,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -12739,7 +12739,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -12839,7 +12839,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12898,7 +12898,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -12948,7 +12948,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -12983,7 +12983,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -13007,7 +13007,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -13107,7 +13107,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13166,7 +13166,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13216,7 +13216,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -13251,7 +13251,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -13275,7 +13275,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -13397,7 +13397,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13447,7 +13447,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13473,7 +13473,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -13499,7 +13499,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -13525,7 +13525,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -13551,7 +13551,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -13610,7 +13610,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -13634,7 +13634,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -13710,7 +13710,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13760,7 +13760,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -13786,7 +13786,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -13812,7 +13812,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -13838,7 +13838,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -13864,7 +13864,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -13923,7 +13923,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -13947,7 +13947,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -14023,7 +14023,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -14073,7 +14073,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -14099,7 +14099,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -14125,7 +14125,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -14151,7 +14151,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -14177,7 +14177,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -14236,7 +14236,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -14260,7 +14260,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -14458,7 +14458,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -14517,7 +14517,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -14543,7 +14543,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14602,7 +14602,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -14626,7 +14626,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -14726,7 +14726,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -14785,7 +14785,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -14811,7 +14811,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -14870,7 +14870,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -14894,7 +14894,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -14994,7 +14994,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15053,7 +15053,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15079,7 +15079,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -15138,7 +15138,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -15162,7 +15162,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -15284,7 +15284,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15334,7 +15334,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15360,7 +15360,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -15386,7 +15386,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -15412,7 +15412,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -15438,7 +15438,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -15497,7 +15497,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -15521,7 +15521,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -15597,7 +15597,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15647,7 +15647,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15673,7 +15673,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -15699,7 +15699,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -15725,7 +15725,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -15751,7 +15751,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -15810,7 +15810,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -15834,7 +15834,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -15910,7 +15910,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15960,7 +15960,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -15986,7 +15986,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -16012,7 +16012,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -16038,7 +16038,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -16064,7 +16064,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -16123,7 +16123,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -16147,7 +16147,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -16345,7 +16345,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16404,7 +16404,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16430,7 +16430,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16489,7 +16489,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -16513,7 +16513,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -16613,7 +16613,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16672,7 +16672,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16698,7 +16698,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -16757,7 +16757,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -16781,7 +16781,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -16881,7 +16881,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16940,7 +16940,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -16966,7 +16966,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -17025,7 +17025,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -17049,7 +17049,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -17171,7 +17171,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17221,7 +17221,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17247,7 +17247,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17273,7 +17273,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17299,7 +17299,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17325,7 +17325,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17384,7 +17384,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -17408,7 +17408,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -17484,7 +17484,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17534,7 +17534,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17560,7 +17560,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17586,7 +17586,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17612,7 +17612,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17638,7 +17638,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17697,7 +17697,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -17721,7 +17721,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -17797,7 +17797,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17847,7 +17847,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -17873,7 +17873,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17899,7 +17899,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17925,7 +17925,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -17951,7 +17951,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 90.0, "wellLocation": { "offset": { @@ -18010,7 +18010,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -18034,7 +18034,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -18232,7 +18232,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18291,7 +18291,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18317,7 +18317,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18376,7 +18376,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -18400,7 +18400,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -18500,7 +18500,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18559,7 +18559,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18585,7 +18585,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18644,7 +18644,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -18668,7 +18668,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -18768,7 +18768,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18827,7 +18827,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -18853,7 +18853,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -18912,7 +18912,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -18936,7 +18936,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 20.0, "wellLocation": { "offset": { @@ -19055,7 +19055,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 20.0, "wellLocation": { "offset": { @@ -19155,7 +19155,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 20.0, "wellLocation": { "offset": { @@ -19255,7 +19255,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 20.0, "wellLocation": { "offset": { @@ -19386,7 +19386,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -19436,7 +19436,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -19486,7 +19486,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -19536,7 +19536,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -19586,7 +19586,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -19636,7 +19636,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -19686,7 +19686,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -19736,7 +19736,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -19786,7 +19786,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -19812,7 +19812,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -19838,7 +19838,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -19984,7 +19984,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -20034,7 +20034,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20084,7 +20084,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20134,7 +20134,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20184,7 +20184,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20234,7 +20234,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20284,7 +20284,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20334,7 +20334,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20384,7 +20384,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20410,7 +20410,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20436,7 +20436,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -20582,7 +20582,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -20632,7 +20632,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20682,7 +20682,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20732,7 +20732,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20782,7 +20782,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20832,7 +20832,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20882,7 +20882,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20932,7 +20932,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -20982,7 +20982,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -21008,7 +21008,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 35.0, "wellLocation": { "offset": { @@ -21034,7 +21034,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -21269,7 +21269,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 10.0, "wellLocation": { "offset": { @@ -21295,7 +21295,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21321,7 +21321,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21347,7 +21347,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21373,7 +21373,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21399,7 +21399,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21425,7 +21425,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21451,7 +21451,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21527,7 +21527,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 10.0, "wellLocation": { "offset": { @@ -21553,7 +21553,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21579,7 +21579,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21605,7 +21605,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21631,7 +21631,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21657,7 +21657,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21683,7 +21683,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21709,7 +21709,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21785,7 +21785,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 2.0, + "flowRate": 8.75, "volume": 10.0, "wellLocation": { "offset": { @@ -21811,7 +21811,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21837,7 +21837,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21863,7 +21863,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21889,7 +21889,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21915,7 +21915,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21941,7 +21941,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 35.0, "volume": 10.0, "wellLocation": { "offset": { @@ -21967,7 +21967,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 8.0, + "flowRate": 57.0, "volume": 10.0, "wellLocation": { "offset": { @@ -22275,7 +22275,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -22301,7 +22301,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -22327,7 +22327,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -22353,7 +22353,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -22429,7 +22429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -22455,7 +22455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -22481,7 +22481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -22507,7 +22507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -22583,7 +22583,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -22609,7 +22609,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 40.0, "wellLocation": { "offset": { @@ -22635,7 +22635,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -22661,7 +22661,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 45.0, "wellLocation": { "offset": { @@ -22747,7 +22747,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -22773,7 +22773,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -22799,7 +22799,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -22825,7 +22825,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -22851,7 +22851,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -22877,7 +22877,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -22903,7 +22903,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 45.0, "wellLocation": { "offset": { @@ -22929,7 +22929,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 45.0, "wellLocation": { "offset": { @@ -22979,7 +22979,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23029,7 +23029,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23055,7 +23055,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23105,7 +23105,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -23131,7 +23131,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23181,7 +23181,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23207,7 +23207,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23257,7 +23257,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -23283,7 +23283,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -23429,7 +23429,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -23455,7 +23455,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -23481,7 +23481,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -23507,7 +23507,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -23533,7 +23533,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -23559,7 +23559,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -23585,7 +23585,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 45.0, "wellLocation": { "offset": { @@ -23611,7 +23611,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 45.0, "wellLocation": { "offset": { @@ -23661,7 +23661,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23711,7 +23711,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23737,7 +23737,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23787,7 +23787,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -23813,7 +23813,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23863,7 +23863,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23889,7 +23889,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -23939,7 +23939,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -23965,7 +23965,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -24111,7 +24111,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -24137,7 +24137,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -24163,7 +24163,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -24189,7 +24189,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -24215,7 +24215,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -24241,7 +24241,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 55.0, "wellLocation": { "offset": { @@ -24267,7 +24267,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 45.0, "wellLocation": { "offset": { @@ -24293,7 +24293,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 45.0, "wellLocation": { "offset": { @@ -24343,7 +24343,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24393,7 +24393,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24419,7 +24419,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24469,7 +24469,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -24495,7 +24495,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24545,7 +24545,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24571,7 +24571,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 60.0, "wellLocation": { "offset": { @@ -24621,7 +24621,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 358.0, "volume": 30.0, "wellLocation": { "offset": { @@ -24647,7 +24647,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -24899,7 +24899,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -24958,7 +24958,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25008,7 +25008,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -25043,7 +25043,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -25189,7 +25189,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25248,7 +25248,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25298,7 +25298,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -25333,7 +25333,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -25479,7 +25479,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25538,7 +25538,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -25588,7 +25588,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -25623,7 +25623,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -25755,7 +25755,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -25877,7 +25877,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -25912,7 +25912,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -26008,7 +26008,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -26130,7 +26130,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -26165,7 +26165,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -26261,7 +26261,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -26383,7 +26383,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -26418,7 +26418,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -26607,7 +26607,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -26666,7 +26666,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -26716,7 +26716,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -26751,7 +26751,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -26897,7 +26897,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -26956,7 +26956,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -27006,7 +27006,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -27041,7 +27041,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -27187,7 +27187,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -27246,7 +27246,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -27296,7 +27296,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -27331,7 +27331,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -27463,7 +27463,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -27585,7 +27585,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -27620,7 +27620,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -27716,7 +27716,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -27838,7 +27838,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -27873,7 +27873,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -27969,7 +27969,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -28091,7 +28091,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 150.0, "wellLocation": { "offset": { @@ -28126,7 +28126,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -28315,7 +28315,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -28374,7 +28374,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -28424,7 +28424,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -28459,7 +28459,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -28605,7 +28605,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -28664,7 +28664,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -28714,7 +28714,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -28749,7 +28749,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -28895,7 +28895,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -28954,7 +28954,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 100.0, "wellLocation": { "offset": { @@ -29004,7 +29004,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 200.0, "wellLocation": { "offset": { @@ -29039,7 +29039,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -29204,7 +29204,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -29230,7 +29230,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -29265,7 +29265,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -29411,7 +29411,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -29437,7 +29437,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -29472,7 +29472,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -29618,7 +29618,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 50.0, "wellLocation": { "offset": { @@ -29644,7 +29644,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 50.0, "wellLocation": { "offset": { @@ -29679,7 +29679,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -29856,7 +29856,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -29906,7 +29906,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -29956,7 +29956,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30006,7 +30006,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30056,7 +30056,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30106,7 +30106,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30156,7 +30156,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30206,7 +30206,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30256,7 +30256,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30282,7 +30282,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30308,7 +30308,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -30454,7 +30454,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30504,7 +30504,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30554,7 +30554,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30604,7 +30604,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30654,7 +30654,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30704,7 +30704,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30754,7 +30754,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30804,7 +30804,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30854,7 +30854,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30880,7 +30880,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -30906,7 +30906,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -31052,7 +31052,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31102,7 +31102,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31152,7 +31152,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31202,7 +31202,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31252,7 +31252,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31302,7 +31302,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31352,7 +31352,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31402,7 +31402,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31452,7 +31452,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31478,7 +31478,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 32.0, "wellLocation": { "offset": { @@ -31504,7 +31504,7 @@ "commandType": "blowout", "notes": [], "params": { - "flowRate": 80.0, + "flowRate": 716.0, "wellLocation": { "offset": { "x": 0.0, @@ -31756,7 +31756,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -31782,7 +31782,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -31882,7 +31882,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -31908,7 +31908,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -32008,7 +32008,7 @@ "commandType": "aspirate", "notes": [], "params": { - "flowRate": 40.0, + "flowRate": 179.0, "volume": 31.0, "wellLocation": { "offset": { @@ -32034,7 +32034,7 @@ "commandType": "dispense", "notes": [], "params": { - "flowRate": 160.0, + "flowRate": 716.0, "volume": 31.0, "wellLocation": { "offset": { @@ -32091,7 +32091,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x.py", + "name": "Flex_S_v2_15_P1000M_P50M_GRIP_HS_MB_TC_TM_IlluminaDNAPrep24x.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ce0f35b3c6][Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ed1e64c539][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInCol2].json similarity index 98% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ce0f35b3c6][Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ed1e64c539][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInCol2].json index b1406042616..507c5d11bee 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ce0f35b3c6][Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ed1e64c539][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInCol2].json @@ -68,7 +68,7 @@ ], "files": [ { - "name": "Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2.py", + "name": "Flex_X_v2_16_NO_PIPETTES_TM_ModuleInCol2.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ed8f67ebb6][Flex_None_None_2_18_GoldenRTP].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ed8f67ebb6][Flex_None_None_2_18_GoldenRTP].json deleted file mode 100644 index 54b70732994..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ed8f67ebb6][Flex_None_None_2_18_GoldenRTP].json +++ /dev/null @@ -1,304 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable sample_count has value 6", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable dilutions has value 1", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable pcr_volume has value 20", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable washes has value 6", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable elution_buffer_volume has value 20.0", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable bead_ratio has value 1.8", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable pipette_volume has value 20.0", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable mixing_volume has value 150.0", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable dry_run has value False", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable pipette has value flex_1channel_50", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [], - "files": [ - { - "name": "Flex_None_None_2_18_GoldenRTP.py", - "role": "main" - }, - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Golden RTP Examples" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [ - { - "default": 6.0, - "description": "How many samples to process.", - "displayName": "Sample count", - "max": 12.0, - "min": 1.0, - "suffix": "samples", - "type": "int", - "value": 6.0, - "variableName": "sample_count" - }, - { - "default": 1.0, - "description": "How many dilutions of the sample.", - "displayName": "Dilutions", - "max": 3.0, - "min": 1.0, - "type": "int", - "value": 1.0, - "variableName": "dilutions" - }, - { - "choices": [ - { - "displayName": "20", - "value": 20.0 - }, - { - "displayName": "16", - "value": 16.0 - } - ], - "default": 20.0, - "description": "PRC reaction volume.", - "displayName": "PCR Volume (µL)", - "type": "int", - "value": 20.0, - "variableName": "pcr_volume" - }, - { - "choices": [ - { - "displayName": "1X", - "value": 6.0 - }, - { - "displayName": "2X", - "value": 12.0 - } - ], - "default": 6.0, - "description": "How many washes to perform.", - "displayName": "Washes", - "type": "int", - "value": 6.0, - "variableName": "washes" - }, - { - "default": 20.0, - "description": "Volume of elution buffer to use.", - "displayName": "Elution Buffer Volume", - "max": 30.0, - "min": 20.0, - "suffix": "µL", - "type": "float", - "value": 20.0, - "variableName": "elution_buffer_volume" - }, - { - "default": 1.8, - "description": "How many samples to process.", - "displayName": "Bead Ratio", - "max": 3.0, - "min": 1.5, - "suffix": "samples", - "type": "float", - "value": 1.8, - "variableName": "bead_ratio" - }, - { - "choices": [ - { - "displayName": "Low Volume (10.0µL)", - "value": 10.0 - }, - { - "displayName": "Medium Volume (20.0µL)", - "value": 20.0 - }, - { - "displayName": "High Volume (50.0µL)", - "value": 50.0 - } - ], - "default": 20.0, - "description": "How many microliters to pipette of each sample.", - "displayName": "Pipette volume", - "type": "float", - "value": 20.0, - "variableName": "pipette_volume" - }, - { - "choices": [ - { - "displayName": "Low Volume ⬇️", - "value": 100.0 - }, - { - "displayName": "Medium Volume 🟰", - "value": 150.0 - }, - { - "displayName": "High Volume ⬆️", - "value": 200.0 - } - ], - "default": 150.0, - "description": "Adjust the mixing volume.", - "displayName": "Mixing Volume in µL", - "type": "float", - "value": 150.0, - "variableName": "mixing_volume" - }, - { - "default": false, - "description": "When on, skip aspirate and dispense steps.", - "displayName": "Dry Run", - "type": "bool", - "value": false, - "variableName": "dry_run" - }, - { - "choices": [ - { - "displayName": "Single channel 50µL", - "value": "flex_1channel_50" - }, - { - "displayName": "Eight Channel 50µL", - "value": "flex_8channel_50" - } - ], - "default": "flex_1channel_50", - "description": "What pipette to use during the protocol.", - "displayName": "Pipette Name", - "type": "str", - "value": "flex_1channel_50", - "variableName": "pipette" - } - ] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[eef1755bf2][v2_18_None_None_duplicateRTPVariableName].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[eef1755bf2][v2_18_None_None_duplicateRTPVariableName].json deleted file mode 100644 index fd6ee958a51..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[eef1755bf2][v2_18_None_None_duplicateRTPVariableName].json +++ /dev/null @@ -1,95 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable variable_a has value 1", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - }, - { - "commandType": "custom", - "notes": [], - "params": { - "legacyCommandText": "variable variable_b has value 1", - "legacyCommandType": "command.COMMENT" - }, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_None_None_duplicateRTPVariableName.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Multiple RTP Variables with Same Name" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-2 Standard", - "runTimeParameters": [ - { - "default": 1.0, - "description": "This is a description", - "displayName": "int 3", - "max": 3.0, - "min": 1.0, - "type": "int", - "value": 1.0, - "variableName": "variable_a" - }, - { - "default": 1.0, - "description": "This is a description", - "displayName": "int 2", - "max": 3.0, - "min": 1.0, - "type": "int", - "value": 1.0, - "variableName": "variable_b" - } - ] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[01a37ee87b][Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f0efddcd7d][Flex_X_v2_16_P1000_96_DropTipsWithNoTrash].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[01a37ee87b][Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f0efddcd7d][Flex_X_v2_16_P1000_96_DropTipsWithNoTrash].json index 9139bc0c57d..e4b54680e8a 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[01a37ee87b][Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f0efddcd7d][Flex_X_v2_16_P1000_96_DropTipsWithNoTrash].json @@ -1370,7 +1370,7 @@ ], "files": [ { - "name": "Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash.py", + "name": "Flex_X_v2_16_P1000_96_DropTipsWithNoTrash.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[adca5df246][Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f24bb0b4d9][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TC_TM_IlluminaDNAPrep96PART3].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[adca5df246][Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f24bb0b4d9][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TC_TM_IlluminaDNAPrep96PART3].json index d664bc8fc3d..f71b0969ee6 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[adca5df246][Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f24bb0b4d9][Flex_S_v2_15_P1000_96_GRIP_HS_MB_TC_TM_IlluminaDNAPrep96PART3].json @@ -5774,7 +5774,7 @@ ], "files": [ { - "name": "Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III.py", + "name": "Flex_S_v2_15_P1000_96_GRIP_HS_MB_TC_TM_IlluminaDNAPrep96PART3.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[49c3817e54][OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f301704f56][OT2_S_v6_P300M_P300S_HS_HS_NormalUseWithTransfer].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[49c3817e54][OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f301704f56][OT2_S_v6_P300M_P300S_HS_HS_NormalUseWithTransfer].json index 213e9a6d6ea..a116d308217 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[49c3817e54][OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f301704f56][OT2_S_v6_P300M_P300S_HS_HS_NormalUseWithTransfer].json @@ -6382,7 +6382,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer.json", + "name": "OT2_S_v6_P300M_P300S_HS_HS_NormalUseWithTransfer.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f3ec1e065e][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f345e8e33a][OT2_S_v4_P300M_P20S_MM_TM_TC1_PD40].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f3ec1e065e][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f345e8e33a][OT2_S_v4_P300M_P20S_MM_TM_TC1_PD40].json index e9c1b191c53..df6100f8a51 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f3ec1e065e][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f345e8e33a][OT2_S_v4_P300M_P20S_MM_TM_TC1_PD40].json @@ -9606,7 +9606,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40.json", + "name": "OT2_S_v4_P300M_P20S_MM_TM_TC1_PD40.json", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9b9f87acb0][OT2_None_None_2_16_verifyDoesNotDeadlock].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f37bb0ec36][OT2_S_v2_16_NO_PIPETTES_verifyDoesNotDeadlock].json similarity index 93% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9b9f87acb0][OT2_None_None_2_16_verifyDoesNotDeadlock].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f37bb0ec36][OT2_S_v2_16_NO_PIPETTES_verifyDoesNotDeadlock].json index 6e5243e7ff0..73c621e5e54 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9b9f87acb0][OT2_None_None_2_16_verifyDoesNotDeadlock].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f37bb0ec36][OT2_S_v2_16_NO_PIPETTES_verifyDoesNotDeadlock].json @@ -18,7 +18,7 @@ "errors": [], "files": [ { - "name": "OT2_None_None_2_16_verifyDoesNotDeadlock.py", + "name": "OT2_S_v2_16_NO_PIPETTES_verifyDoesNotDeadlock.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2a185c4e1c][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f51172f73b][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_Smoke].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2a185c4e1c][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f51172f73b][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_Smoke].json index c22b8b7efe6..de09e2915ff 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[2a185c4e1c][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f51172f73b][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_Smoke].json @@ -12900,7 +12900,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke.py", + "name": "Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_Smoke.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d8ec3534d4][Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f5f3b9c5bb][Flex_X_v2_16_P1000_96_TM_ModuleAndWasteChuteConflict].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d8ec3534d4][Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f5f3b9c5bb][Flex_X_v2_16_P1000_96_TM_ModuleAndWasteChuteConflict].json index 64864e5d715..48fdecffa9e 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[d8ec3534d4][Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f5f3b9c5bb][Flex_X_v2_16_P1000_96_TM_ModuleAndWasteChuteConflict].json @@ -1273,7 +1273,7 @@ ], "files": [ { - "name": "Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict.py", + "name": "Flex_X_v2_16_P1000_96_TM_ModuleAndWasteChuteConflict.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f60d333cbc][v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f60d333cbc][v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices].json deleted file mode 100644 index e79086d7d25..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f60d333cbc][v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "ParameterValueError [line 24]: Parameter must be set to one of the allowed values of {9, 20, 15}.", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be set to one of the allowed values of {9, 20, 15}.", - "errorCode": "4000", - "errorInfo": { - "args": "('Parameter must be set to one of the allowed values of {9, 20, 15}.',)", - "class": "ParameterValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices.py\", line 24, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 55, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 95, in value\n raise ParameterValueError(\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_int_default_no_matching_choices.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "default choice does not match a choice" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cac08da081][Flex_None_None_TC_2_15_verifyThermocyclerLoadedSlots].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f639acc89d][Flex_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots].json similarity index 95% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cac08da081][Flex_None_None_TC_2_15_verifyThermocyclerLoadedSlots].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f639acc89d][Flex_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots].json index ffe74376eeb..f2c22e7db81 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[cac08da081][Flex_None_None_TC_2_15_verifyThermocyclerLoadedSlots].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f639acc89d][Flex_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots].json @@ -137,7 +137,7 @@ "errorInfo": { "args": "()", "class": "AssertionError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_TC_2_15_verifyThermocyclerLoadedSlots.py\", line 13, in run\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 124, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots.py\", line 13, in run\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -147,7 +147,7 @@ ], "files": [ { - "name": "Flex_None_None_TC_2_15_verifyThermocyclerLoadedSlots.py", + "name": "Flex_S_v2_15_NO_PIPETTES_TC_verifyThermocyclerLoadedSlots.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[298e1dd4db][Flex_P1000_96_None_TC_2_16_AnalysisError_pipetteCollisionWithThermocyclerLidClips].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f7085d7134][Flex_X_v2_16_P1000_96_TC_pipetteCollisionWithThermocyclerLidClips].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[298e1dd4db][Flex_P1000_96_None_TC_2_16_AnalysisError_pipetteCollisionWithThermocyclerLidClips].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f7085d7134][Flex_X_v2_16_P1000_96_TC_pipetteCollisionWithThermocyclerLidClips].json index c2f8a537b65..fd28108213d 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[298e1dd4db][Flex_P1000_96_None_TC_2_16_AnalysisError_pipetteCollisionWithThermocyclerLidClips].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f7085d7134][Flex_X_v2_16_P1000_96_TC_pipetteCollisionWithThermocyclerLidClips].json @@ -1324,7 +1324,7 @@ ], "files": [ { - "name": "Flex_P1000_96_None_TC_2_16_AnalysisError_pipetteCollisionWithThermocyclerLidClips.py", + "name": "Flex_X_v2_16_P1000_96_TC_pipetteCollisionWithThermocyclerLidClips.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[afe15b729c][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f834b97da1][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_DeckConfiguration1].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[afe15b729c][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f834b97da1][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_DeckConfiguration1].json index 49900d0964c..501aee6006d 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[afe15b729c][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f834b97da1][Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_DeckConfiguration1].json @@ -13016,7 +13016,7 @@ "errors": [], "files": [ { - "name": "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1.py", + "name": "Flex_S_v2_16_P1000_96_GRIP_HS_MB_TC_TM_DeckConfiguration1.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f88b7d6e30][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f88b7d6e30][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name].json index cf209b282f3..f39ac142b59 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f88b7d6e30][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f88b7d6e30][Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name].json @@ -1,18 +1,74 @@ { - "commands": [], - "config": {}, + "commands": [ + { + "commandType": "home", + "notes": [], + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, "errors": [ { - "analysis_execution_time": null, - "command_exit_code": 2, - "command_output": "Usage: python -m opentrons.cli analyze [OPTIONS] FILES...\nTry 'python -m opentrons.cli analyze --help' for help.\n\nError: Invalid value for 'FILES...': Path '/var/lib/ot/protocols/generated_protocols/Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name.py' does not exist.\n" + "detail": "ParameterNameError [line 30]: Display name must be a string and at most 30 characters.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.parameters.types.ParameterNameError: Display name must be a string and at most 30 characters.", + "errorCode": "4000", + "errorInfo": { + "args": "('Display name must be a string and at most 30 characters.',)", + "class": "ParameterNameError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name.py\", line 30, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 56, in add_int\n parameter = parameter_definition.create_int_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 178, in create_int_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 56, in __init__\n self._display_name = validation.ensure_display_name(display_name)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/validation.py\", line 33, in ensure_display_name\n raise ParameterNameError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_X_v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_display_name.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" } ], - "files": [], "labware": [], "liquids": [], - "metadata": [], + "metadata": { + "protocolName": "Description Too Long 2.18" + }, "modules": [], "pipettes": [], + "robotType": "OT-3 Standard", "runTimeParameters": [] } diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f1a979fd7b][OT2_P300M_P20S_TC_HS_TM_2_16_dispense_changes].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fc60ef9cbd][OT2_S_v2_16_P300M_P20S_HS_TC_TM_dispense_changes].json similarity index 99% rename from app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f1a979fd7b][OT2_P300M_P20S_TC_HS_TM_2_16_dispense_changes].json rename to app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fc60ef9cbd][OT2_S_v2_16_P300M_P20S_HS_TC_TM_dispense_changes].json index 778a4b220f7..e98baefe075 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[f1a979fd7b][OT2_P300M_P20S_TC_HS_TM_2_16_dispense_changes].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fc60ef9cbd][OT2_S_v2_16_P300M_P20S_HS_TC_TM_dispense_changes].json @@ -2965,7 +2965,7 @@ "errors": [], "files": [ { - "name": "OT2_P300M_P20S_TC_HS_TM_2_16_dispense_changes.py", + "name": "OT2_S_v2_16_P300M_P20S_HS_TC_TM_dispense_changes.py", "role": "main" }, { diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fd596a3cac][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fd596a3cac][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description].json deleted file mode 100644 index abf2b73ecaf..00000000000 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fd596a3cac][v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description].json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "commands": [ - { - "commandType": "home", - "notes": [], - "params": {}, - "result": {}, - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "errors": [ - { - "detail": "ParameterValueError [line 84]: Parameter must be set to one of the allowed values of {'flex_8channel_1000', 'flex_8channel_50'}.", - "errorCode": "4000", - "errorInfo": {}, - "errorType": "ExceptionInProtocolError", - "wrappedErrors": [ - { - "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be set to one of the allowed values of {'flex_8channel_1000', 'flex_8channel_50'}.", - "errorCode": "4000", - "errorInfo": { - "args": "(\"Parameter must be set to one of the allowed values of {'flex_8channel_1000', 'flex_8channel_50'}.\",)", - "class": "ParameterValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description.py\", line 84, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 148, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 95, in value\n raise ParameterValueError(\n" - }, - "errorType": "PythonException", - "wrappedErrors": [] - } - ] - } - ], - "files": [ - { - "name": "cpx_4_tuberack_100ul.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_200ul_rss.json", - "role": "labware" - }, - { - "name": "opentrons_ot3_96_tiprack_50ul_rss.json", - "role": "labware" - }, - { - "name": "sample_labware.json", - "role": "labware" - }, - { - "name": "v2_18_NO_PIPETTES_Overrides_BadTypesInRTP_Override_wrong_type_in_description.py", - "role": "main" - } - ], - "labware": [], - "liquids": [], - "metadata": { - "protocolName": "Description Too Long 2.18" - }, - "modules": [], - "pipettes": [], - "robotType": "OT-3 Standard", - "runTimeParameters": [] -} diff --git a/app-testing/tests/analyses_snapshot_test.py b/app-testing/tests/analyses_snapshot_test.py index 8630a6d0d24..0cecaff8940 100644 --- a/app-testing/tests/analyses_snapshot_test.py +++ b/app-testing/tests/analyses_snapshot_test.py @@ -7,10 +7,13 @@ from automation.data.protocol import Protocol from automation.data.protocol_registry import ProtocolRegistry from citools.generate_analyses import ANALYSIS_SUFFIX, generate_analyses_from_test +from rich.console import Console from syrupy.extensions.json import JSONSnapshotExtension from syrupy.filters import props from syrupy.types import SerializableData +console = Console() + # not included in the snapshot exclude = props( "id", @@ -99,6 +102,7 @@ def test_analysis_snapshot(analyze_protocols: None, snapshot_json: SerializableD "analysis_results", f"{protocol.file_stem}_{target}_{ANALYSIS_SUFFIX}", ) + console.print(f"Analysis file: {analysis}") if analysis.exists(): with open(analysis, "r") as f: data = json.load(f)