diff --git a/docs/OTProto_Templates.md b/docs/OTProto_Templates.md index 3ebb1c5..8cb49f4 100644 --- a/docs/OTProto_Templates.md +++ b/docs/OTProto_Templates.md @@ -262,6 +262,102 @@ Protocol_Template = DNA_fmol_Dilution.Template( * `_destination_labware_type` | `str` OR `None` * `_destination_labware_wells` | `List[str]` OR `None` +**Methods:** + +* `run(self)` returns `None` + * Generates Opentrons liquid handling commands + + +### Template: [`Standard_iGEM_Calibration`](https://github.com/intbio-ncl/BiomationScripterLib/blob/main/BiomationScripter/OTProto/Templates.py) + +#### Overview + +This template can be used to generate an automation protocol to prepare a 96 well plate for calibrating plate reader fluorescence and absorbance measurements. + +For more information about the iGEM calibration protocol, read the following resources: + +* https://doi.org/10.1093/synbio/ysac010 +* https://technology.igem.org/engineering/test + +Briefly, this templates allows for automated transfer of specificed calibrated from stock labware (tubes or plates) into a 96-well measurement plate. A 12-step serial dilution is performed for each calibrant within the measurement plate. The measurement plate can then be used to calibrate a plate reader as described in the resources above. + +#### Generic Protocol Steps + +The basic protocol is described below for a single calibrant with no repeats + +1. Transfer solvent into the appropriate wells A1-A12 of a 96 well measurement plate as required + * Note that if the calibrant is supplied at the concentration required for the most concentrated point of the serial dilution, no solvent is added to A1 + +2. Add calibrant to well A1 of the measurement plate + +3. Perform a 2-fold serial dilution of the calibrant from well A1 to well A11 (Such that well A12 contains only solvent) + +4. Remove excess volume from well A11 so that all wells in the measurement plate have the same volume + +#### Usage + +!!! example + + See an example protocol using this template [here](protocol_examples/OTProto/Templates/iGEM-Calibration-Plate_Setup.ipynb). + +The `Template` object is created using the following code: + +```python +from BiomationScripter.OTProto.Templates import Standard_iGEM_Calibration + +Protocol_Template = Standard_iGEM_Calibration.Template( + Calibrants: List[Calibrant], + Calibrants_Stock_Concs: List[float], + Calibrants_Initial_Concs: List[float], + Calibrants_Solvents: List[str], + Calibrant_Aliquot_Volumes: List[float], + Solvent_Aliquot_Volumes: List[float], + Volume_Per_Well: float, + Repeats: int, + Calibrant_Labware_Type: str, + Solvent_Labware_Type: str, + Destination_Labware_Type: str, + Trash_Labware_Type: str, + Solvent_Mix_Before = None, + Solvent_Mix_After = None, + Solvent_Source_Touch_Tip: bool = True, + Solvent_Destination_Touch_Tip: bool = True, + Solvent_Move_After_Dispense = "well_bottom", + Solvent_Blowout = "destination well", + First_Dilution_Mix_Before = (10, "transfer_volume"), + First_Dilution_Mix_After = (10, "transfer_volume"), + First_Dilution_Source_Touch_Tip: bool = True, + First_Dilution_Destination_Touch_Tip: bool = True, + First_Dilution_Move_After_Dispense = None, + First_Dilution_Blowout = "destination well", + Dilution_Mix_Before = (10, "transfer_volume"), + Dilution_Mix_After = (10, "transfer_volume"), + Dilution_Source_Touch_Tip: bool = True, + Dilution_Destination_Touch_Tip: bool = True, + Dilution_Move_After_Dispense = None, + Dilution_Blowout = "destination well", + Mix_Speed_Multipler: float = 2, + Aspirate_Speed_Multipler: float = 1, + Dispense_Speed_Multipler: float = 1, + Blowout_Speed_Multiplier: float = 1, + Dead_Volume_Proportion: float = 0.95, + Protocol: opentrons.protocol_api, + Name: str, + Metadata, + Starting_20uL_Tip: str = "A1", + Starting_300uL_Tip: str = "A1", + Starting_1000uL_Tip: str = "A1" +) +``` + +#### Full Documentation + + + +**Attributes:** + + + **Methods:** * `run(self)` returns `None` diff --git a/docs/protocol_examples/OTProto/Templates/iGEM-Calibration-Plate_Setup.ipynb b/docs/protocol_examples/OTProto/Templates/iGEM-Calibration-Plate_Setup.ipynb new file mode 100644 index 0000000..d06e1f7 --- /dev/null +++ b/docs/protocol_examples/OTProto/Templates/iGEM-Calibration-Plate_Setup.ipynb @@ -0,0 +1,5858 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "367b2dea", + "metadata": {}, + "source": [ + "# OTProto: Standard iGEM Plate Reader Calibration" + ] + }, + { + "cell_type": "markdown", + "id": "fff1489e", + "metadata": {}, + "source": [ + "## Overview\n", + "\n", + "BiomationScripter Templates can be used to help quickly and easily generate automation protocols for common experiments or procedures. Shown here is an example of how the OTProto.Templates.Standard_iGEM_Calibration Template can be used to generate an automation protocol to prepare a 96 well plate for calibrating plate reader fluorescence and absorbance measurements.\n", + "\n", + "See the [documentation](../../../../OTProto_Templates/#template-Standard_iGEM_Calibration) for full details about the iGEM calibration protocol, or read the following resources: \n", + "* https://doi.org/10.1093/synbio/ysac010\n", + "* https://technology.igem.org/engineering/test\n", + "\n", + "Briefly, this templates allows for automated transfer of specificed calibrated from stock labware (tubes or plates) into a 96-well measurement plate. A 12-step serial dilution is performed for each calibrant within the measurement plate. The measurement plate can then be used to calibrate a plate reader as described in the resources above." + ] + }, + { + "cell_type": "markdown", + "id": "2978c1bf", + "metadata": {}, + "source": [ + "## Setting Up\n", + "\n", + "The first step is to import the `BiomationScripter` module, and the template from `BiomationScripter.OTProto.Templates`. " + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "a00b625e", + "metadata": {}, + "outputs": [], + "source": [ + "import BiomationScripter as BMS\n", + "from BiomationScripter.OTProto.Templates import Standard_iGEM_Calibration" + ] + }, + { + "cell_type": "markdown", + "id": "96a88488", + "metadata": {}, + "source": [ + "The next block of code tells the Opentrons where to find BiomationScripter during execution. It is not needed for simulation, but is required to actually run the protocol. More information about this can be found [here](../../../../OTProto/#setting-up-the-ot-2-to-work-with-biomationscripter)." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "9fdf0e42", + "metadata": {}, + "outputs": [], + "source": [ + "import sys\n", + "sys.path.insert(0, \"/var/lib/jupyter/notebooks/Packages/BiomationScripterLib\")" + ] + }, + { + "cell_type": "markdown", + "id": "d086ac96", + "metadata": {}, + "source": [ + "## Protocol Metadata\n", + "\n", + "It is good practice to include some metadata in your protocol. It is also required for Opentrons protocols to run correctly. The metadata is stored in a dictionary with specific key words, as shown below." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "10fa4367", + "metadata": {}, + "outputs": [], + "source": [ + "metadata = {\n", + " 'protocolName': 'Calibrant Preparation',\n", + " 'author': 'Bradley Brown',\n", + " 'author-email': 'b.bradley2@newcastle.ac.uk',\n", + " 'user': 'Bradley Brown',\n", + " 'user-email': 'b.bradley2@newcastle.ac.uk',\n", + " 'source': 'Uses BMS 0.2',\n", + " 'apiLevel': '2.11',\n", + " 'robotName': 'ICOT2S' # This is the name of the OT2 you plan to run the protocol on\n", + "}" + ] + }, + { + "cell_type": "markdown", + "id": "25ed423c", + "metadata": {}, + "source": [ + "## Defining the Protocol\n", + "\n", + "\n", + "First, information about the calibrants are defined. For this example, the information is based on that reported in [this study](https://doi.org/10.1093/synbio/ysac010).\n", + "\n", + "Specifically, the following information needs to be defined:\n", + "* Calibrant names\n", + "* Stock concentrations (the concentration in the source labware)\n", + "* Initial concentrations (the neat concentration in the 96 well plate)\n", + "* Calibrant solvents (e.g. water or PBS)\n", + "* Calibrant aliquot volumes (the amount of volume for each calibrant in the source labware, e.g. 500 μL per tube)\n", + "* Solvent aliquot volumes (same as above but for the solvents)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "14adbc16", + "metadata": {}, + "outputs": [], + "source": [ + "Calibrants = [\n", + " \"Fluorescein\",\n", + " \"Sulforhodamine 101\",\n", + " \"Cascade Blue\",\n", + " \"Microspheres\"\n", + "]\n", + "\n", + "Calibrants_Stock_Concs = [\n", + " 10,\n", + " 2,\n", + " 10,\n", + " 3e9,\n", + "]\n", + "\n", + "Calibrants_Initial_Concs = [\n", + " 10,\n", + " 2,\n", + " 10,\n", + " 3e9\n", + "]\n", + "\n", + "Calibrants_Solvents = [\n", + " \"PBS\",\n", + " \"PBS\",\n", + " \"Water\",\n", + " \"Water\",\n", + "]\n", + "\n", + "Calibrant_Aliquot_Volumes = 500\n", + " \n", + "Solvent_Aliquot_Volumes = 5000" + ] + }, + { + "cell_type": "markdown", + "id": "589d437c", + "metadata": {}, + "source": [ + "Next, the amount of calibrant per well in the measurement plate, and the number of replicates per calibrant, are defined" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "3577dc93", + "metadata": {}, + "outputs": [], + "source": [ + "Volume_Per_Well = 100\n", + "Repeats = 2" + ] + }, + { + "cell_type": "markdown", + "id": "539bda36", + "metadata": {}, + "source": [ + "Finally, the type of each labware to be used in the protocol needs to be specified using [Opentrons API names](../../../../OTProto#opentrons-api-name)." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "cae8c184", + "metadata": {}, + "outputs": [], + "source": [ + "Calibrant_Labware_Type = \"3dprinted_24_tuberack_1500ul\"\n", + "\n", + "Solvent_Labware_Type = \"3dprinted_15_tuberack_15000ul\"\n", + "\n", + "Destination_Labware_Type = \"greiner655087_96_wellplate_340ul\"\n", + "\n", + "Trash_Labware_Type = \"axygen_1_reservoir_90ml\"" + ] + }, + { + "cell_type": "markdown", + "id": "e8dedd3d", + "metadata": {}, + "source": [ + "There are additional options which can be specified to modify how the calibration plate is prepared. These are listed below with their default values. If not specified, these values are automatically used." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "e5270cd9", + "metadata": {}, + "outputs": [], + "source": [ + "Solvent_Mix_Before = None \n", + " \n", + "Solvent_Mix_After = None\n", + "\n", + "Solvent_Source_Touch_Tip = True\n", + "\n", + "Solvent_Destination_Touch_Tip = True\n", + "\n", + "Solvent_Move_After_Dispense = \"well_bottom\"\n", + "\n", + "Solvent_Blowout = \"destination well\"\n", + "\n", + "First_Dilution_Mix_Before = (10, \"transfer_volume\")\n", + "\n", + "First_Dilution_Mix_After = (10, \"transfer_volume\")\n", + "\n", + "First_Dilution_Source_Touch_Tip = True\n", + "\n", + "First_Dilution_Destination_Touch_Tip = True\n", + "\n", + "First_Dilution_Move_After_Dispense = False\n", + "\n", + "First_Dilution_Blowout = \"destination well\"\n", + "\n", + "Dilution_Mix_Before = (10, \"transfer_volume\")\n", + "\n", + "Dilution_Mix_After = (10, \"transfer_volume\")\n", + "\n", + "Dilution_Source_Touch_Tip = True\n", + "\n", + "Dilution_Destination_Touch_Tip = True\n", + "\n", + "Dilution_Move_After_Dispense = False\n", + "\n", + "Dilution_Blowout = \"destination well\"\n", + "\n", + "Mix_Speed_Multipler = 2\n", + "\n", + "Aspirate_Speed_Multipler = 1\n", + "\n", + "Dispense_Speed_Multipler = 1\n", + "\n", + "Blowout_Speed_Multiplier = 1\n", + "\n", + "Dead_Volume_Proportion = 0.95" + ] + }, + { + "cell_type": "markdown", + "id": "f9cb862d", + "metadata": {}, + "source": [ + "## Protocol Configuration" + ] + }, + { + "cell_type": "markdown", + "id": "dd546c3f", + "metadata": {}, + "source": [ + "Two final pieces of information are required for this protocol. The first is the directory of any [custom labware files](https://support.opentrons.com/s/article/Creating-Custom-Labware-Definitions). Note that this isn't needed for execuation by the Opentrons; it is used when simulating on a separate device." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "a4874a7b", + "metadata": {}, + "outputs": [], + "source": [ + "Custom_Labware_Dir = \"../../../../data/custom_labware\"" + ] + }, + { + "cell_type": "markdown", + "id": "f4f2f876", + "metadata": {}, + "source": [ + "The final information required are the starting tips for loaded pipettes. This simply refers to the position of the first tip in a tip box for each type of pipette. This allows for the use of partially empty boxes." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "e57913c3", + "metadata": {}, + "outputs": [], + "source": [ + "Starting_20uL_Tip = \"A1\"\n", + "Starting_300uL_Tip = \"A1\"" + ] + }, + { + "cell_type": "markdown", + "id": "b55a35fc", + "metadata": {}, + "source": [ + "## The `Run` Function" + ] + }, + { + "cell_type": "markdown", + "id": "4afd950c", + "metadata": {}, + "source": [ + "Before the final steps, we need to first create a `run` function which contains the code above. This `run` function needs to take a single argument called `protocol`. For more information about why this is needed, see [here](https://docs.opentrons.com/v2/tutorial.html#the-run-function).\n", + "\n", + "At the end of the function, we'll also create the protocol template and run it." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "e8196d3c", + "metadata": {}, + "outputs": [], + "source": [ + "def run(protocol):\n", + " \n", + " Custom_Labware_Dir = \"C:/Users/bradl/OneDrive - Newcastle University/Nextcloud/Private/Automation/Opentrons_Labware_Definitions\"\n", + " \n", + " Starting_20uL_Tip = \"A1\"\n", + " Starting_300uL_Tip = \"A1\"\n", + " \n", + " Calibrants = [\n", + " \"Fluorescein\",\n", + " \"Sulforhodamine 101\",\n", + " \"Cascade Blue\",\n", + " \"Microspheres\"\n", + " ]\n", + " \n", + " Calibrants_Stock_Concs = [\n", + " 10,\n", + " 2,\n", + " 10,\n", + " 3e9,\n", + " ]\n", + " \n", + " Calibrants_Initial_Concs = [\n", + " 10,\n", + " 2,\n", + " 10,\n", + " 3e9\n", + " ]\n", + " \n", + " Calibrants_Solvents = [\n", + " \"PBS\",\n", + " \"PBS\",\n", + " \"Water\",\n", + " \"Water\",\n", + " ]\n", + " \n", + " Calibrant_Aliquot_Volumes = 500\n", + " \n", + " Solvent_Aliquot_Volumes = 5000\n", + " \n", + " Volume_Per_Well = 100\n", + " \n", + " Repeats = 2\n", + " \n", + " Calibrant_Labware_Type = \"3dprinted_24_tuberack_1500ul\"\n", + " \n", + " Solvent_Labware_Type = \"3dprinted_15_tuberack_15000ul\"\n", + " \n", + " Destination_Labware_Type = \"greiner655087_96_wellplate_340ul\"\n", + " \n", + " Trash_Labware_Type = \"axygen_1_reservoir_90ml\"\n", + " \n", + " Solvent_Mix_Before = None \n", + " \n", + " Solvent_Mix_After = None\n", + " \n", + " Solvent_Source_Touch_Tip = True\n", + " \n", + " Solvent_Destination_Touch_Tip = True\n", + " \n", + " Solvent_Move_After_Dispense = \"well_bottom\"\n", + " \n", + " Solvent_Blowout = \"destination well\"\n", + " \n", + " First_Dilution_Mix_Before = (10, \"transfer_volume\")\n", + " \n", + " First_Dilution_Mix_After = (10, \"transfer_volume\")\n", + " \n", + " First_Dilution_Source_Touch_Tip = True\n", + " \n", + " First_Dilution_Destination_Touch_Tip = True\n", + " \n", + " First_Dilution_Move_After_Dispense = False\n", + " \n", + " First_Dilution_Blowout = \"destination well\"\n", + " \n", + " Dilution_Mix_Before = (10, \"transfer_volume\")\n", + " \n", + " Dilution_Mix_After = (10, \"transfer_volume\")\n", + " \n", + " Dilution_Source_Touch_Tip = True\n", + " \n", + " Dilution_Destination_Touch_Tip = True\n", + " \n", + " Dilution_Move_After_Dispense = False\n", + " \n", + " Dilution_Blowout = \"destination well\"\n", + " \n", + " Mix_Speed_Multipler = 2\n", + " \n", + " Aspirate_Speed_Multipler = 1\n", + " \n", + " Dispense_Speed_Multipler = 1\n", + " \n", + " Blowout_Speed_Multiplier = 1\n", + " \n", + " Dead_Volume_Proportion = 0.95\n", + " \n", + " \n", + " Calibration_Protocol = Standard_iGEM_Calibration.Template(\n", + " Calibrants = Calibrants,\n", + " Calibrants_Stock_Concs = Calibrants_Stock_Concs,\n", + " Calibrants_Initial_Concs = Calibrants_Initial_Concs,\n", + " Calibrants_Solvents = Calibrants_Solvents,\n", + " Calibrant_Aliquot_Volumes = Calibrant_Aliquot_Volumes,\n", + " Solvent_Aliquot_Volumes = Solvent_Aliquot_Volumes,\n", + " Volume_Per_Well = Volume_Per_Well,\n", + " Repeats = Repeats,\n", + " Calibrant_Labware_Type = Calibrant_Labware_Type,\n", + " Solvent_Labware_Type = Solvent_Labware_Type,\n", + " Destination_Labware_Type = Destination_Labware_Type,\n", + " Trash_Labware_Type = Trash_Labware_Type,\n", + " Solvent_Mix_Before = Solvent_Mix_Before,\n", + " Solvent_Mix_After = Solvent_Mix_After,\n", + " Solvent_Source_Touch_Tip = Solvent_Source_Touch_Tip,\n", + " Solvent_Destination_Touch_Tip = Solvent_Destination_Touch_Tip,\n", + " Solvent_Move_After_Dispense = Solvent_Move_After_Dispense,\n", + " Solvent_Blowout = Solvent_Blowout,\n", + " First_Dilution_Mix_Before = First_Dilution_Mix_Before,\n", + " First_Dilution_Mix_After = First_Dilution_Mix_After,\n", + " First_Dilution_Source_Touch_Tip = First_Dilution_Source_Touch_Tip,\n", + " First_Dilution_Destination_Touch_Tip = First_Dilution_Destination_Touch_Tip,\n", + " First_Dilution_Move_After_Dispense = First_Dilution_Move_After_Dispense,\n", + " First_Dilution_Blowout = First_Dilution_Blowout,\n", + " Dilution_Mix_Before = Dilution_Mix_Before,\n", + " Dilution_Mix_After = Dilution_Mix_After,\n", + " Dilution_Source_Touch_Tip = Dilution_Source_Touch_Tip,\n", + " Dilution_Destination_Touch_Tip = Dilution_Destination_Touch_Tip,\n", + " Dilution_Move_After_Dispense = Dilution_Move_After_Dispense,\n", + " Dilution_Blowout = Dilution_Blowout,\n", + " Mix_Speed_Multipler = Mix_Speed_Multipler,\n", + " Aspirate_Speed_Multipler = Aspirate_Speed_Multipler,\n", + " Dispense_Speed_Multipler = Dispense_Speed_Multipler,\n", + " Blowout_Speed_Multiplier = Blowout_Speed_Multiplier,\n", + " Dead_Volume_Proportion = Dead_Volume_Proportion,\n", + " Protocol=protocol,\n", + " Name=metadata[\"protocolName\"],\n", + " Metadata=metadata,\n", + " Starting_20uL_Tip=Starting_20uL_Tip,\n", + " Starting_300uL_Tip=Starting_300uL_Tip,\n", + " )\n", + " \n", + " Calibration_Protocol.custom_labware_dir = Custom_Labware_Dir\n", + " Calibration_Protocol.run()\n", + " return(Calibration_Protocol)\n" + ] + }, + { + "cell_type": "markdown", + "id": "18809edd", + "metadata": {}, + "source": [ + "## Simulating the Protocol" + ] + }, + { + "cell_type": "markdown", + "id": "49d50769", + "metadata": {}, + "source": [ + "The protocol can be simulated in one of the two ways described [here](../../../../OTProto/OTProto/#simulating-protocols). For this example, we'll use the first method. Remember that this simulation code will need to be removed before running on the Opentrons." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "73d804bb", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\bradl\\.opentrons\\robot_settings.json not found. Loading defaults\n", + "C:\\Users\\bradl\\.opentrons\\deck_calibration.json not found. Loading defaults\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\u001b[1mNumber Of Tips Used:\u001b[0m\n", + "opentrons_96_tiprack_300ul: 18\n", + "\n", + "\u001b[1mDeck Setup:\u001b[0m\n", + "Slot 1: Source_Labware_3dprinted_24_tuberack_1500ul_0\n", + "Slot 2: Source_Labware_3dprinted_15_tuberack_15000ul_0\n", + "Slot 3: Destination 1\n", + "Slot 4: Liquid Trash\n", + "Slot 5: opentrons_96_tiprack_300ul\n", + "Slot 6: Empty\n", + "Slot 7: Empty\n", + "Slot 8: Empty\n", + "Slot 9: Empty\n", + "Slot 10: Empty\n", + "Slot 11: Empty\n", + "Slot 12: Opentrons Fixed Trash on 12\n", + "Place 500.0 uL of Fluorescein at A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Place 500.0 uL of Sulforhodamine 101 at A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Place 500.0 uL of Cascade Blue at A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Place 500.0 uL of Microspheres at A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Place 5000.0 uL of PBS at A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Place 5000.0 uL of Water at A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Pausing robot operation: This protocol uses 0 20 uL tip boxes\n", + "Pausing robot operation: This protocol uses 1 300 uL tip boxes\n", + "Picking up tip from A1 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E2 of Destination 1 on 3\n", + "Blowing out at E2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E3 of Destination 1 on 3\n", + "Blowing out at E3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E4 of Destination 1 on 3\n", + "Blowing out at E4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E5 of Destination 1 on 3\n", + "Blowing out at E5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E6 of Destination 1 on 3\n", + "Blowing out at E6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E7 of Destination 1 on 3\n", + "Blowing out at E7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E8 of Destination 1 on 3\n", + "Blowing out at E8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E9 of Destination 1 on 3\n", + "Blowing out at E9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E10 of Destination 1 on 3\n", + "Blowing out at E10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E11 of Destination 1 on 3\n", + "Blowing out at E11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E12 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E12 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to E12 of Destination 1 on 3\n", + "Blowing out at E12 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F2 of Destination 1 on 3\n", + "Blowing out at F2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F3 of Destination 1 on 3\n", + "Blowing out at F3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F4 of Destination 1 on 3\n", + "Blowing out at F4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F5 of Destination 1 on 3\n", + "Blowing out at F5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F6 of Destination 1 on 3\n", + "Blowing out at F6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F7 of Destination 1 on 3\n", + "Blowing out at F7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F8 of Destination 1 on 3\n", + "Blowing out at F8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F9 of Destination 1 on 3\n", + "Blowing out at F9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F10 of Destination 1 on 3\n", + "Blowing out at F10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F11 of Destination 1 on 3\n", + "Blowing out at F11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F12 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F12 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to F12 of Destination 1 on 3\n", + "Blowing out at F12 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G2 of Destination 1 on 3\n", + "Blowing out at G2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G3 of Destination 1 on 3\n", + "Blowing out at G3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G4 of Destination 1 on 3\n", + "Blowing out at G4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G5 of Destination 1 on 3\n", + "Blowing out at G5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G6 of Destination 1 on 3\n", + "Blowing out at G6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G7 of Destination 1 on 3\n", + "Blowing out at G7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G8 of Destination 1 on 3\n", + "Blowing out at G8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G9 of Destination 1 on 3\n", + "Blowing out at G9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G10 of Destination 1 on 3\n", + "Blowing out at G10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G11 of Destination 1 on 3\n", + "Blowing out at G11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G12 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G12 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to G12 of Destination 1 on 3\n", + "Blowing out at G12 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H2 of Destination 1 on 3\n", + "Blowing out at H2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H3 of Destination 1 on 3\n", + "Blowing out at H3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H4 of Destination 1 on 3\n", + "Blowing out at H4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H5 of Destination 1 on 3\n", + "Blowing out at H5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H6 of Destination 1 on 3\n", + "Blowing out at H6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H7 of Destination 1 on 3\n", + "Blowing out at H7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H8 of Destination 1 on 3\n", + "Blowing out at H8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H9 of Destination 1 on 3\n", + "Blowing out at H9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H10 of Destination 1 on 3\n", + "Blowing out at H10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H11 of Destination 1 on 3\n", + "Blowing out at H11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A2 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H12 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H12 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to H12 of Destination 1 on 3\n", + "Blowing out at H12 of Destination 1 on 3\n", + "Touching tip\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from B1 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A2 of Destination 1 on 3\n", + "Blowing out at A2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A3 of Destination 1 on 3\n", + "Blowing out at A3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A4 of Destination 1 on 3\n", + "Blowing out at A4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A5 of Destination 1 on 3\n", + "Blowing out at A5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A6 of Destination 1 on 3\n", + "Blowing out at A6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A7 of Destination 1 on 3\n", + "Blowing out at A7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A8 of Destination 1 on 3\n", + "Blowing out at A8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A9 of Destination 1 on 3\n", + "Blowing out at A9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A10 of Destination 1 on 3\n", + "Blowing out at A10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A11 of Destination 1 on 3\n", + "Blowing out at A11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A12 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A12 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to A12 of Destination 1 on 3\n", + "Blowing out at A12 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B2 of Destination 1 on 3\n", + "Blowing out at B2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B3 of Destination 1 on 3\n", + "Blowing out at B3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B4 of Destination 1 on 3\n", + "Blowing out at B4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B5 of Destination 1 on 3\n", + "Blowing out at B5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B6 of Destination 1 on 3\n", + "Blowing out at B6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B7 of Destination 1 on 3\n", + "Blowing out at B7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B8 of Destination 1 on 3\n", + "Blowing out at B8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B9 of Destination 1 on 3\n", + "Blowing out at B9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B10 of Destination 1 on 3\n", + "Blowing out at B10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B11 of Destination 1 on 3\n", + "Blowing out at B11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B12 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B12 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to B12 of Destination 1 on 3\n", + "Blowing out at B12 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C2 of Destination 1 on 3\n", + "Blowing out at C2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C3 of Destination 1 on 3\n", + "Blowing out at C3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C4 of Destination 1 on 3\n", + "Blowing out at C4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C5 of Destination 1 on 3\n", + "Blowing out at C5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C6 of Destination 1 on 3\n", + "Blowing out at C6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C7 of Destination 1 on 3\n", + "Blowing out at C7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C8 of Destination 1 on 3\n", + "Blowing out at C8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C9 of Destination 1 on 3\n", + "Blowing out at C9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C10 of Destination 1 on 3\n", + "Blowing out at C10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C11 of Destination 1 on 3\n", + "Blowing out at C11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C12 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C12 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to C12 of Destination 1 on 3\n", + "Blowing out at C12 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D2 of Destination 1 on 3\n", + "Blowing out at D2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D3 of Destination 1 on 3\n", + "Blowing out at D3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D4 of Destination 1 on 3\n", + "Blowing out at D4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D5 of Destination 1 on 3\n", + "Blowing out at D5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D6 of Destination 1 on 3\n", + "Blowing out at D6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D7 of Destination 1 on 3\n", + "Blowing out at D7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D8 of Destination 1 on 3\n", + "Blowing out at D8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D9 of Destination 1 on 3\n", + "Blowing out at D9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D10 of Destination 1 on 3\n", + "Blowing out at D10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D11 of Destination 1 on 3\n", + "Blowing out at D11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2\n", + "Aspirating 100.0 uL from A1 of Source_Labware_3dprinted_15_tuberack_15000ul_0 on 2 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D12 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D12 of Destination 1 on 3 at 92.86 uL/sec\n", + "Moving to D12 of Destination 1 on 3\n", + "Blowing out at D12 of Destination 1 on 3\n", + "Touching tip\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from C1 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C1 of Destination 1 on 3\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C1 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A2 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D1 of Destination 1 on 3\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D1 of Destination 1 on 3\n", + "Touching tip\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from D1 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E1 of Destination 1 on 3\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E1 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A3 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F1 of Destination 1 on 3\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F1 of Destination 1 on 3\n", + "Touching tip\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from E1 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G1 of Destination 1 on 3\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G1 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A4 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H1 of Destination 1 on 3\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H1 of Destination 1 on 3\n", + "Touching tip\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from F1 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A1 of Destination 1 on 3\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A1 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from A1 of Source_Labware_3dprinted_24_tuberack_1500ul_0 on 1 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B1 of Destination 1 on 3\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 200.0 ul\n", + "Aspirating 200.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 200.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 200.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B1 of Destination 1 on 3\n", + "Touching tip\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from G1 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to C1 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to C2 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to C3 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to C4 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to C5 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to C6 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to C7 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to C8 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to C9 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to C10 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to C11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at C11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to D1 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to D2 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to D3 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to D4 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to D5 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to D6 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to D7 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to D8 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to D9 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to D10 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to D11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at D11 of Destination 1 on 3\n", + "Touching tip\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from H1 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to E1 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to E2 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to E3 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to E4 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to E5 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to E6 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to E7 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to E8 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to E9 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to E10 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to E11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at E11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to F1 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to F2 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to F3 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to F4 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to F5 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to F6 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to F7 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to F8 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to F9 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to F10 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to F11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at F11 of Destination 1 on 3\n", + "Touching tip\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from A2 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to G1 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to G2 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to G3 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to G4 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to G5 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to G6 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to G7 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to G8 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to G9 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to G10 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to G11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at G11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to H1 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to H2 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to H3 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to H4 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to H5 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to H6 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to H7 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to H8 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to H9 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to H10 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to H11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at H11 of Destination 1 on 3\n", + "Touching tip\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from B2 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to A1 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A2 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A3 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A4 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A5 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A6 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A7 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A8 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A9 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to A10 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at A11 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to B1 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B1 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B1 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B2 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B2 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to B2 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B2 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B2 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B3 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B3 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to B3 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B3 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B3 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B4 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B4 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to B4 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B4 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B4 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B5 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B5 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to B5 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B5 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B5 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B6 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B6 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to B6 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B6 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B6 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B7 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B7 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to B7 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B7 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B7 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B8 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B8 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to B8 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B8 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B8 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B9 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B9 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to B9 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B9 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B9 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B10 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B10 of Destination 1 on 3\n", + "Touching tip\n", + "Moving to B10 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B10 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B10 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to B11 of Destination 1 on 3\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Blowing out at B11 of Destination 1 on 3\n", + "Touching tip\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from C2 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to C11 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into C11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from C11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A1 of Liquid Trash on 4\n", + "Dispensing 100.0 uL into A1 of Liquid Trash on 4 at 92.86 uL/sec\n", + "Blowing out at A1 of Liquid Trash on 4\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from D2 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to D11 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into D11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from D11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A1 of Liquid Trash on 4\n", + "Dispensing 100.0 uL into A1 of Liquid Trash on 4 at 92.86 uL/sec\n", + "Blowing out at A1 of Liquid Trash on 4\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from E2 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to E11 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into E11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from E11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A1 of Liquid Trash on 4\n", + "Dispensing 100.0 uL into A1 of Liquid Trash on 4 at 92.86 uL/sec\n", + "Blowing out at A1 of Liquid Trash on 4\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from F2 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to F11 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into F11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from F11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A1 of Liquid Trash on 4\n", + "Dispensing 100.0 uL into A1 of Liquid Trash on 4 at 92.86 uL/sec\n", + "Blowing out at A1 of Liquid Trash on 4\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from G2 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to G11 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into G11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from G11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A1 of Liquid Trash on 4\n", + "Dispensing 100.0 uL into A1 of Liquid Trash on 4 at 92.86 uL/sec\n", + "Blowing out at A1 of Liquid Trash on 4\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from H2 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to H11 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into H11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from H11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A1 of Liquid Trash on 4\n", + "Dispensing 100.0 uL into A1 of Liquid Trash on 4 at 92.86 uL/sec\n", + "Blowing out at A1 of Liquid Trash on 4\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from A3 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to A11 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into A11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from A11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A1 of Liquid Trash on 4\n", + "Dispensing 100.0 uL into A1 of Liquid Trash on 4 at 92.86 uL/sec\n", + "Blowing out at A1 of Liquid Trash on 4\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n", + "Picking up tip from B3 of Opentrons 96 Tip Rack 300 µL on 5\n", + "Moving to B11 of Destination 1 on 3\n", + "Mixing 10 times with a volume of 100.0 ul\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Dispensing 100.0 uL into B11 of Destination 1 on 3 at 185.72 uL/sec\n", + "Aspirating 100.0 uL from B11 of Destination 1 on 3 at 92.86 uL/sec\n", + "Touching tip\n", + "Moving to A1 of Liquid Trash on 4\n", + "Dispensing 100.0 uL into A1 of Liquid Trash on 4 at 92.86 uL/sec\n", + "Blowing out at A1 of Liquid Trash on 4\n", + "Dropping tip into A1 of Opentrons Fixed Trash on 12\n" + ] + } + ], + "source": [ + "######################################################################\n", + "# Use this cell if simulating the protocol, otherwise comment it out #\n", + "######################################################################\n", + "\n", + "##########################################################################################################\n", + "# IMPORTANT - the protocol will not upload to the opentrons if this cell is not commented out or removed #\n", + "##########################################################################################################\n", + "\n", + "from opentrons import simulate as OT2 # This line simulates the protocol\n", + "\n", + "# Get the correct api version\n", + "protocol = OT2.get_protocol_api(metadata[\"apiLevel\"])\n", + "# Home the pipetting head\n", + "protocol.home()\n", + "# Call the 'run' function to run the protocol\n", + "p = run(protocol)\n", + "\n", + "for line in protocol.commands():\n", + " print(line)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "697e69ff", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.7" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}